PRJ: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
Zeile 7: Zeile 7:
 
* [[GIS-Datei-Format]]
 
* [[GIS-Datei-Format]]
 
* [[OGR]] (PROJ)
 
* [[OGR]] (PROJ)
 +
 +
== Dokumentationen ==
  
 
Note that this .prj format is the same as the .prj format used by the most recent versions of ESRI software, but different from the .prj format of older ESRI software. Developers may find it useful to use free libraries such as [[OGR]] (or indirectly, PROJ/GDAL).  
 
Note that this .prj format is the same as the .prj format used by the most recent versions of ESRI software, but different from the .prj format of older ESRI software. Developers may find it useful to use free libraries such as [[OGR]] (or indirectly, PROJ/GDAL).  
 +
 +
* http://terraetl.blogspot.com/2007/10/shapefiles-and-prj-tying-them-together.html
 +
 +
== Beispiele ==
  
 
Beispiel einer .PRJ-Datei aus einem Projekt aus der Schweiz und mit WGS84-Datenformat (mit Umbrüchen):
 
Beispiel einer .PRJ-Datei aus einem Projekt aus der Schweiz und mit WGS84-Datenformat (mit Umbrüchen):

Version vom 31. Oktober 2007, 03:38 Uhr

Die .prj-Datei enthält eine textuelle Beschreibung eines Koordinatensystems im Well-Known Text (WKT)-Format.

The .prj file contains a text description of a coordinate system in the Well-Known Text (WKT) format.

Siehe auch/see also:

Dokumentationen

Note that this .prj format is the same as the .prj format used by the most recent versions of ESRI software, but different from the .prj format of older ESRI software. Developers may find it useful to use free libraries such as OGR (or indirectly, PROJ/GDAL).

Beispiele

Beispiel einer .PRJ-Datei aus einem Projekt aus der Schweiz und mit WGS84-Datenformat (mit Umbrüchen):

 GEOGCS["GCS_WGS_1984", 
   DATUM["D_WGS_1984", 
     SPHEROID["WGS_1984", 6378137.0, 298.257223563]
   ], 
   PRIMEM["Greenwich", 0.0],
   UNIT["Degree", 0.0174532925199433]
 ]

Beispiel mit CH1903:

 PROJCS["CH1903_LV03", 
   GEOGCS["GCS_CH1903",
     DATUM["D_CH1903", 
       SPHEROID["Bessel_1841", 6377397.155, 299.1528128]
     ], 
     PRIMEM["Greenwich",0.0], 
     UNIT["Degree",0.0174532925199433]
   ], 
   PROJECTION["Hotine_Oblique_Mercator_Azimuth_Center"], 
   PARAMETER["False_Easting",600000.0], 
   PARAMETER["False_Northing",200000.0], 
   PARAMETER["Scale_Factor",1.0], 
   PARAMETER["Azimuth",90.0], 
   PARAMETER["Longitude_Of_Center",7.439583333333333], 
   PARAMETER["Latitude_Of_Center",46.95240555555556], 
   UNIT["Meter",1.0]
 ]