mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
33 lines
1001 B
Plaintext
33 lines
1001 B
Plaintext
{
|
|
"name": "to_dms",
|
|
"type": "function",
|
|
"groups": ["Conversions"],
|
|
"description": "Converts a coordinate to degree, minute, second.",
|
|
"arguments": [{
|
|
"arg": "coordinate",
|
|
"description": "A latitude or longitude value."
|
|
}, {
|
|
"arg": "axis",
|
|
"description": "The axis of the coordinate. Either 'x' or 'y'."
|
|
}, {
|
|
"arg": "precision",
|
|
"description": "Number of decimals."
|
|
}, {
|
|
"arg": "formatting",
|
|
"optional": true,
|
|
"default": "",
|
|
"description": "Designates the formatting type. Acceptable values are NULL (default), 'aligned' or 'suffix'."
|
|
}],
|
|
"examples": [{
|
|
"expression": "to_dms(6.1545681, 'x', 3)",
|
|
"returns": "6\u00b09\u203216.445\u2033"
|
|
}, {
|
|
"expression": "to_dms(6.1545681, 'y', 4, 'aligned')",
|
|
"returns": "6\u00b009\u203216.4452\u2033N"
|
|
}, {
|
|
"expression": "to_dms(6.1545681, 'y', 4, 'suffix')",
|
|
"returns": "6\u00b09\u203216.4452\u2033N"
|
|
}],
|
|
"tags": ["converts", "minute", "degree", "second", "coordinate"]
|
|
}
|