Re: [gdal-dev] OT: Need help with proj definition

2010-05-13 Thread Jamie Adams
I quickly ran this in a python shell: >>> from osgeo import osr >>> wkt = 'GEOGCS["GCS_ITRF_2000",DATUM["D_ITRF_2000",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]' >>> srs = osr.SpatialReference() >>> srs.ImportFromWkt(wkt) >>> srs.Ex

[gdal-dev] OT: Need help with proj definition

2010-05-13 Thread Stephen Woodbridge
Hi all, I have a shapefile with the following in the prj file: GEOGCS["GCS_ITRF_2000",DATUM["D_ITRF_2000",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] Anyone know how to convert this to a proj4 definition? Thanks, -Steve ___