PRJ-Datei: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
Zeile 1: Zeile 1:
;en: The .prj file contains a text description of a coordinate system (coordinate reference system CRS, spatial reference system SRS) in the OpenGIS Well-Known Text (WKT) format.  
+
Die .prj-Datei enthält eine textuelle Beschreibung eines Koordinatensystems (Koordinaten-Referenz-Systems KRS) im OpenGIS Well-Known Text (WKT)-Format.
  
;de: Die .prj-Datei enthält eine textuelle Beschreibung eines Koordinatensystems (Koordinaten-Referenz-Systems KRS) im OpenGIS Well-Known Text (WKT)-Format.
+
The .prj file contains a text description of a coordinate system (coordinate reference system CRS, spatial reference system SRS) in the OpenGIS Well-Known Text (WKT) format.  
  
Siehe auch:  
+
Siehe auch/see also:  
 
* [[Koordinatensysteme]]
 
* [[Koordinatensysteme]]
* [[GIS-Datei-Format]].
+
* [[GIS-Datei-Format]]
 +
* [[OGR]] (PROJ)
  
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.  
+
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).  
 
 
Developers may find it useful to use free libraries such as [[OGR]] (or indirectly, GDAL).  
 
  
 
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 29. Oktober 2007, 10:45 Uhr

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

The .prj file contains a text description of a coordinate system (coordinate reference system CRS, spatial reference system SRS) in the OpenGIS Well-Known Text (WKT) format.

Siehe auch/see also:

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).

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]
 ]