Om de coördinaten in het geojson-formaat te krijgen, kunt u het volgende fragment gebruiken:
WITH geojson_featurecollection AS (
SELECT ''::json AS fc
)
SELECT (json_array_elements(fc->'features'))->>'geometry'
FROM geojson_featurecollection;
waarin u uw volledige FeatureCollection-definitie plakt (afkomstig van de http://geojson.io website na uw bewerkingen) tussen de aanhalingstekens