[GIS] PostGIS spatial reference ID (SRID) for regular cartesian coordinate system

coordinate systemepsgpostgispostgresqlsrid

I would like to store a polygon as a set of 2D points represented as x, y coordinates of a Cartesian coordinate system.

Which spatial reference can I use? Looking at my spatial_ref_sys table, all the spatial references seem to be geography related.

The points of the polygon would represent satellite measurements which I would invoke ST_ConvexHull on to get the shape of the satellite footprint.

Best Answer

If you do no reprojection with the data, it does not really matter what projected CRS you are using.

You can use EPSG:3857 (Google Mercator), if your data does not exceed the bounds of

-20037508.34,-20037508.34,20037508.34,20037508.34

(Not sure what happens if the data is outside those bounds)

Related Question