I am using mapdotnet services for our gis application to load the shape files and this mapdotnet service want the proj4 details and that getting from the spatialreference.org but for this proj4 details is blank. any other way to get it.

Below is the .prj of the shape file-

PROJCS["NAD_1983_HARN_WISCRS_EauClaire_County_Feet",GEOGCS["GCS_North_American_1983_HARN",DATUM["D_North_American_1983_HARN",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",394000.0],PARAMETER["False_Northing",300812.797],PARAMETER["Central_Meridian",-91.28888888888889],PARAMETER["Standard_Parallel_1",45.87228112638889],PARAMETER["Scale_Factor",1.000035079],PARAMETER["Latitude_Of_Origin",45.87228112638889],UNIT["Foot_US",0.3048006096012192]]

Below is the url from where you can find the proj4 details but for this particular shape file proj4 is blank when we click on the below url then click on the proj4 link on that page-

http://spatialreference.org/ref/sr-org/6905/

Please help me out that how can I get the proj4 details from the .prj file or from the shape file.

Thanks in advance!

link|improve this question

41% accept rate
feedback

4 Answers

Install the rgdal library. Then use readOGR():

//
// read the .shp - layer is the same name but withou the .shp
// it will read the .prj file
mymap<-readOGR("CA_tract_2000.shp", layer="CA_tract_2000")

//
// Then do
//
mymap@proj4string
link|improve this answer
feedback

You can also use this Python script (seen elsewhere on the Internet):

#!/usr/bin/env python

import osr
import sys

def main(prj_file):
    prj_text = open(prj_file, 'r').read()
    srs = osr.SpatialReference()
    if srs.ImportFromWkt(prj_text):
        raise ValueError("Error importing PRJ information from: %s" % prj_file)
    print srs.ExportToProj4()
    #print srs.ExportToWkt()

if __name__=="__main__":
    main(sys.argv[1])
link|improve this answer
feedback

It should be possible to work it out from the individual components. Proj.4 allows everything to be specified. You will need the ESRI documentation for their PRJ files. This will include their definitions (eg. what is the difference between NAD83_HARN and normal NAD83? they migth be the same but I don't know)

another approach might be to look at the GDAL/OGR library and utilities. These are capable of reading most PRJ files.

link|improve this answer
feedback

Another solution using a perl script (requires Geo::GDAL):

#!/usr/bin/perl -w
use strict;
use Geo::OSR;
my $srs = Geo::OSR::SpatialReference->new;
my $prj_text = do { open my $fh, shift or die $!; local $/; <$fh> };
$srs->ImportFromWkt($prj_text);
print $srs->ExportToProj4, "\n";enter code here
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.