I am trying to use gdal to project some basic shapes from a number of local coordinate systems. These coordinate systems are supported by ArcGIS, but ultimately I am just tyring to use gdal(and proj4) to convert these geometries to basic lat/long (EPSG:4326). Here is what the gdalsrsinfo returns:
PROJCS["mylocalgrid",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Local"],PARAMETER["False_Easting",20289.634],PARAMETER["False_Northing",14781.765],PARAMETER["Scale_Factor",1.000179],PARAMETER["Azimuth",0.0],PARAMETER["Longitude_Of_Center",-109.675257803],PARAMETER["Latitude_Of_Center",32.9599048 58],UNIT["Foot_US",0.3048006096012192]]
If I try and use ogr to translate the point shapefile I get the following error:
ERROR 6: No translation for Local to PROJ.4 format is known.
Failed to create coordinate transformation between the
following coordinate systems. This may be because they
are not transformable, or because projection services
(PROJ.4 DLL/.so) could not be loaded.
Source:
Does proj4 support Local Coordinate systems? Any suggestion what I should use for PROJECTION parameter?
Thanks.