Shapefile: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
Zeile 26: Zeile 26:
 
* [http://shapelib.maptools.org/ shapelib] - Shapefile C Library
 
* [http://shapelib.maptools.org/ shapelib] - Shapefile C Library
 
* [http://skyscraper.fortunecity.com/redmond/829/download.htm JShape], frei aber ohne Source code
 
* [http://skyscraper.fortunecity.com/redmond/829/download.htm JShape], frei aber ohne Source code
 +
 +
[[Kategorie:Dateiformat]]

Version vom 7. November 2007, 11:04 Uhr

Vektorformat mit Zusatzdateien. Von ArcView eingeführt.

Siehe auch:

Spezifikation:

Ein Shapefile besteht aus einem zwingenden Paar mit Endung .shp und .dbf. Dazu können weitere Dateien kommen:

  • myfile.shp: Shapefile geometry data
  • myfile.dbf: database data, siehe DBF
  • myfile.shx: shapefile index (internal), falls .shx fehlt, kann es mit Tools neu aus .shp generiert werden.
  • myfile.sbn: shapefile (internal)
  • myfile.sbx: shapefile (internal)
  • myfile.avl: ArcView legend file
  • myfile.rtf: data dictionary (rich text document)
  • myfile.prj: projection file with coordinate reference system info, siehe PRJ

Dokumentation

Software

  • Shapefile reader/writer von GeoTools (Java)
  • shapelib - Shapefile C Library
  • JShape, frei aber ohne Source code