I am currently build the system which is lets user upload they shape files and converting it systematically to postgis by using shp2pgsql. With this command required to parse the epsg code. So I need a ruby gem tha can read the .prj and return as the WKT.
|
feedback
|
|
I'm not sure how Ruby bindings work to GDAL, but OSR (part of GDAL) can extract either the projection WKT (text) or the SRID (integer). See this gis.SE answer for a solution with Python/GDAL/OSR. Update: It turns out the Ruby bindings work nicely as expected. To get you going, try this code:
If you need some other aspect of the projection, explore the available public methods:
| |||||
feedback
|