Sunday 25 June 2017

qgis - Projection system differs


I want to define projection for a Shape file. The projection system is: "NAD_1983_StatePlane_Montana_FIPS_2500" which is referred in Qgis 1.9 as EPSG:102700.



The same projection system is not available in Qgis 1.8. Here it is designated as "NAD 83/Mountana(ft)" and has EPSG:2256 and "NAD83/Mountana" and has EPSG:32100.


My problem is if I want to define projection in Qgis 1.8 what projection system should I use? EPSG:2256 or EPSG:32100?



Answer



2256 and 32100 are the same except 32100 is in meters. I looked up NAD_1983_StatePlane_Montana_FIPS_2500 and the proj4 is the same as 2256 except that lat1 and lat2 are switched, which I don't believe really matters.


So 32100 should work. Otherwise, create a prj file for the shapefile with the following WKT:


PROJCS["NAD_1983_HARN_StatePlane_Montana_FIPS_2500",GEOGCS["GCS_North_American_1983_HARN",DATUM["NAD83_High_Accuracy_Regional_Network",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["False_Easting",600000],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",-109.5],PARAMETER["Standard_Parallel_1",45],PARAMETER["Standard_Parallel_2",49],PARAMETER["Latitude_Of_Origin",44.25],UNIT["Meter",1],AUTHORITY["EPSG","102300"]]


I got this from http://www.spatialreference.org/ which is a great reference for projection problems.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...