Shapefile: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
K (7 Gründe, die gegen Shapefiles sprechen)
K (7 reasons not to use Shapefiles: Reordered SHP limitations)
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
   #TheShapefileChallenge - Current candidates: [[GeoPackage]], [[GeoJSON]], [[GeoCSV]], [[Geobuf]] (2015-05-01).
+
   #TheShapefileChallenge - Revealed that [[GeoPackage]] is the Shapefile of the future (other candidates have been [[GeoJSON]], [[GeoCSV]], [[Geobuf]] 2015-05-01).  
 
 
Other propositions are welcome.
 
  
 
We (GIS) deserve a better desktop/mobile exchange format than Shapefiles! See the "7 reasons not to use Shapefiles".
 
We (GIS) deserve a better desktop/mobile exchange format than Shapefiles! See the "7 reasons not to use Shapefiles".
Zeile 10: Zeile 8:
  
 
# Attribute name lengths are restricted to 10 chars (dbf).
 
# Attribute name lengths are restricted to 10 chars (dbf).
 +
# Three (or more) cluttered files (.shp, .dbf, .shx, .prj, etc.) and incompatible indexes.
 +
# No string type >255 chars (no arcs, no topology).
 
# Max. file size is restricted to 2GB (dbf).
 
# Max. file size is restricted to 2GB (dbf).
# Dozens of cluttered files (.shp, .dbf., .prj, .shx, etc.) and incompatible indexes.
+
# No Multi LineString/Multi Polygon (and no Geometry Collection).
 
# Only one geometry per table.
 
# Only one geometry per table.
# No Multi LineString/Multi Polygon and no Geometry Collection.
 
# No strings >255 chars, no arcs, no topology.
 
 
# No schema (reference) and the layer name has to be derived from the filename.
 
# No schema (reference) and the layer name has to be derived from the filename.
  
Zeile 23: Zeile 21:
 
# Attributnamen beschränkt auf 10 Zeichen (DBF)
 
# Attributnamen beschränkt auf 10 Zeichen (DBF)
 
# Max. Dateigrösse beschränkt auf 2 GB (DBF)
 
# Max. Dateigrösse beschränkt auf 2 GB (DBF)
# Dutzende Dateien, davon drei obligatorisch (.shp, .dbf., .shx) plus .prj, .cpg, etc..., inkompatible Indexe
+
# Drei (oder mehr) separate Dateien (.shp, .dbf, .shx, plus .prj, .cpg, etc.), sowie inkompatible Indexe
 
# Nur eine Geometrie pro Tabelle
 
# Nur eine Geometrie pro Tabelle
 
# Keine MultiLineString/MultiPolygon und keine Collection-Geometrien
 
# Keine MultiLineString/MultiPolygon und keine Collection-Geometrien

Aktuelle Version vom 8. September 2017, 08:25 Uhr

 #TheShapefileChallenge - Revealed that GeoPackage is the Shapefile of the future (other candidates have been GeoJSON, GeoCSV, Geobuf 2015-05-01). 

We (GIS) deserve a better desktop/mobile exchange format than Shapefiles! See the "7 reasons not to use Shapefiles".

Help finding the "Shapefile of the future" within one year. It will be presented at next Spirgarten-Treffen March 24, 2016.

7 reasons not to use Shapefiles

  1. Attribute name lengths are restricted to 10 chars (dbf).
  2. Three (or more) cluttered files (.shp, .dbf, .shx, .prj, etc.) and incompatible indexes.
  3. No string type >255 chars (no arcs, no topology).
  4. Max. file size is restricted to 2GB (dbf).
  5. No Multi LineString/Multi Polygon (and no Geometry Collection).
  6. Only one geometry per table.
  7. No schema (reference) and the layer name has to be derived from the filename.

For german see below.

7 Gründe, die gegen Shapefiles sprechen

  1. Attributnamen beschränkt auf 10 Zeichen (DBF)
  2. Max. Dateigrösse beschränkt auf 2 GB (DBF)
  3. Drei (oder mehr) separate Dateien (.shp, .dbf, .shx, plus .prj, .cpg, etc.), sowie inkompatible Indexe
  4. Nur eine Geometrie pro Tabelle
  5. Keine MultiLineString/MultiPolygon und keine Collection-Geometrien
  6. Keine Strings >255 Zeichen, keine Kreisbogen, keine Topologie
  7. Kein Schema (oder Referenz) und der Tabellenname muss vom Filenamen hergeleitet werden

Die Kandidaten waren: siehe oben.

Notes in German

Vektorformat mit Zusatzdateien. Für ArcView entwickelt.

Siehe auch:

Spezifikation:

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

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

Dokumentation

Software

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