mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
715 B
Plaintext
19 lines
715 B
Plaintext
{
|
|
"name": "flip_coordinates",
|
|
"type": "function",
|
|
"groups": ["GeometryGroup"],
|
|
"description": "Returns a copy of the geometry with the x and y coordinates swapped. Useful for repairing geometries which have had their latitude and longitude values reversed.",
|
|
"arguments": [{
|
|
"arg": "geometry",
|
|
"description": "a geometry"
|
|
}],
|
|
"examples": [{
|
|
"expression": "geom_to_wkt(flip_coordinates(make_point(1, 2)))",
|
|
"returns": "'Point (2 1)'"
|
|
},{
|
|
"expression": "geom_to_wkt(flip_coordinates(geom_from_wkt('LineString(0 2, 1 0, 1 6)')))))",
|
|
"returns": "'LineString (2 0, 0 1, 6 1)'"
|
|
}],
|
|
"tags": ["latitude", "longitude", "reversed", "swapped", "coordinates", "repairing", "copy"]
|
|
}
|