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