How can I find out which version of PostGIS I have?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Since some of the functions depend on other libraries like GEOS and proj4 you might want to get their versions too. Then use:
|
||||
|
|
|
As the above people stated, select PostGIS_full_version(); will answer your question. On my machine, where I'm running PostGIS 2.0 from trunk, I get the following output:
You do need to care about the versions of PROJ and GEOS that are included if you didn't install an all-inclusive package - in particular, there's some brokenness in GEOS prior to 3.3.2 (as noted in the postgis 2.0 manual) in dealing with geometry validity. |
|||
|
|
|
http://postgis.refractions.net/docs/PostGIS_Lib_Version.html |
||||
|
|