ST_GeogFromGeoJSON
This section contains reference documentation for the ST_GeogFromGeoJSON function.
Signature
Usage Examples
select ST_GeogFromGeoJSON(
'{ "type": "Point", "coordinates": [100.0, 0.0] }'
) AS value
from ignoreMe value
select ST_GeogFromGeoJSON(
'{
"type": "LineString",
"coordinates": [
[100.0, 0.0],
[101.0, 1.0]
]
}') AS value
from ignoreMe value
value
Last updated
Was this helpful?

