Question: How does one specify the output srid of the geometry response from feature server?
This issue says that "pg_featureserve CRS support is a work-in-progress", but that may be an old issue. There were more discussions here but I could not determine the result.
ST_SetSRID(ST_Transform(trajectory(t.flown_path)::geometry,102004),102004) as flown_track
ST_SetSRID(ST_Transform(trajectory(t.flown_path)::geometry(geometry,4326),102004),102004) as flown_track
ST_SetSRID(ST_Transform(trajectory(t.flown_path)::geometry,102004)::geometry,102004) as flown_track
The data seems to be properly converted to 102004 (Lambert Conformal Conic), but featureserve insists on converting it to 4326.
Is there a way to stop that conversion?
Question: How does one specify the output srid of the geometry response from feature server?
This issue says that "pg_featureserve CRS support is a work-in-progress", but that may be an old issue. There were more discussions here but I could not determine the result.
When using the table definition:
Non of these attempts produce desired results:
The data seems to be properly converted to 102004 (Lambert Conformal Conic), but featureserve insists on converting it to 4326. Is there a way to stop that conversion?