Hi! I create correctly working shp file, and prj file to addition. The proof is correct view in QGis. But ArcGis says that spatial reference is missing. Does anybody know why?
private void create_prj_file(string _filepath)
{
using (StreamWriter sw = new StreamWriter(_filepath + ".prj"))
{
//sw.Write(wgs84_37N.WKT);
sw.Write(proj);
}
}
proj = String.Format("PROJCS[\"WGS_1984_UTM_Zone_{0}{1}\",GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID"+
"[\"WGS_1984\",6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],"+
"PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",500000.0],PARAMETER[\"False_Northing\",0.0]"+
",PARAMETER[\"Central_Meridian\",33.0],PARAMETER[\"Scale_Factor\",0.9996],PARAMETER[\"Latitude_Of_Origin\",0.0],UNIT[\"Meter\",1.0]]",zone.zoneNum,zone.hampshire);