GIS-Datei-Format: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
K (.tfw/.jgw ESRI world file)
(.tfw/.jgw ESRI world file)
Zeile 77: Zeile 77:
 
Example for a .tfw file:
 
Example for a .tfw file:
  
     4.23214625853148 - A
+
     A: 4.23214625853148
     0.00000000000000 - D
+
     D: 0.00000000000000
     0.00000000000000 - B
+
     B: 0.00000000000000
  -4.23214625853148 - E
+
    E: -4.23214625853148
     3404018.70881921 - C
+
     C: 3404018.70881921
     5819863.55539414 - F
+
     F: 5819863.55539414
  
 
== Weblinks ==
 
== Weblinks ==
 
* GIS-Datei-Format auf [http://de.wikipedia.org/wiki/GIS_Datei-Format Wikipedia]
 
* GIS-Datei-Format auf [http://de.wikipedia.org/wiki/GIS_Datei-Format Wikipedia]

Version vom 23. Januar 2007, 20:57 Uhr

Siehe auch Geodaten.

ESRI GIS-Datei-Formate

Shapefile (.shp/.dbf/.shx)

Vektorformat. Spezifikation: ESRI Whitepaper.


ArcInfo/ESRI ASCII Grid format (.grd)

Refers to a specifc interchange format developed for ARC/INFO rasters in ASCII format. The format consists of a header that specifies the geographic domain and resolution, followed by the actual grid cell values. Usually the file extension is .asc, but recent versions of ESRI software also recognize the extension .grd.

Es können Werte von entweder integer (+/- 2 Milliarden) oder Float (+/- 10E38, 15 Digits) verwaltet werden.

Links:


Description:

The numbers of rows and columns are defined in the Grid NDX, NDY fields of the corresponding windows.

This format is used to export distributions in a ArcInfo compatible ASCII grid format. Cell Origin 0 or 0.5.

Syntax:

 ncols [number of columns]
 nrows [number of rows]
 xllcorner [x coordinate of lower left corner]
 yllcorner [y coordinate of lower left corner]
 cellsize  [cell size in meters]
 nodata_value [value which will be used if no data in grid cell; default is -9999]
 row 1 
 row 2
 ...


.tfw/.jgw ESRI world file

Das ESRI World-Format speichert Bild-zu-Weltkoordinaten-Daten zur Georeferenzierung von Rasterbildern. Der Datei-Name heisst gleich, während die Datei-Extensions für tif tfw, für jpg jgw heissen. Hier ein Beispiel (mit CH1903-Koordinaten):

 A: 1.25
 B: 0
 C: 0
 D: -1.25
 E: 675000.625
 F: 277999.375

Erläuterungen:

  • Zeile 1: Die erste Zahl ist gleich der Länge eines Pixels in horizontaler Richtung.
  • Zeile 2: Die zweite ...
  • Zeile 3: und die dritte Zahl sind Rotationswinkel, die jedoch 0 sind oder ignoriert werden.
  • Zeile 4: Die vierte Zahl ist die Länge eines Pixels in vertikaler Richtung. Zu beachten ist hier das negative Vorzeichen.
  • Zeile 5: Die zwei letzten Zahlen sind die Koordinaten der linken unteren Ecke des Bildes.

English text:

The ESRI World format stores the image-coordinates-to-world-coordinates transformation data resulting from the georeferencing process executed in the Map Assistant. The resulting file contains the transformation factors A to F defining the registering of the image in accordance with the equation below:

  1. x' = A x + B y + C
  2. y' = D x + E y + F

with x,y = Image coordinates

    x',y'= Real world coordinates
    A = x-scale
    B,D = rotation terms
    C,F = translation terms
    E = y-scale (negative)
    

Example for a .tfw file:

   A: 4.23214625853148
   D: 0.00000000000000
   B: 0.00000000000000
   E: -4.23214625853148
   C: 3404018.70881921
   F: 5819863.55539414

Weblinks