pearcewg
pearcewg

Reputation: 9623

Does PostgreSQL implement Geospatial relationship queries?

My company is looking at different database providers, and how they implement Geospatial queries to get distances from a Lat/Long for a number of records.

We are going to investigate PostgreSQL as a potential database platform.

Upvotes: 17

Views: 13015

Answers (2)

vartec
vartec

Reputation: 134661

It's PostGIS. For reference you have manual, wiki and more...

Upvotes: 35

ninesided
ninesided

Reputation: 23273

If you want to spatially enable a PostgreSQL database you can do so with PostGIS, it's compliant with the Open Geospatial Consortium's Simple Features Interface Standard for SQL too.

Upvotes: 12

Related Questions