Alexey Pomelov
Alexey Pomelov

Reputation: 196

Is it possible to use a fake projection in PostGIS?

I'm creating a spatial table in PostGIS. My geometries are going to be abstract, not related to a real world. So I need some fake SRID. What is the right way to do it?

Upvotes: 0

Views: 86

Answers (1)

Mike T
Mike T

Reputation: 43702

If your coordinates are not part of any spatial reference system, use SRID=0.

(Or if you have older PostGIS versions, this is SRID=-1)

Upvotes: 0

Related Questions