GDAL: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
Zeile 2: Zeile 2:
  
 
Siehe auch:
 
Siehe auch:
 +
* [[GDAL - Tipps und Tricks]]
 
* [[OGR]]
 
* [[OGR]]
  
Zeile 13: Zeile 14:
 
* [http://trac.osgeo.org/gdal/wiki/UserDocs/RasterProcTutorial Tutorial] (gut!)
 
* [http://trac.osgeo.org/gdal/wiki/UserDocs/RasterProcTutorial Tutorial] (gut!)
 
* [http://www.koders.com/info.aspx?c=ProjectInfo&pid=RNTRP1H6RPT2UALTHTDUP3ZYWE GDAL als Teil von Maptools.org auf koders.com]
 
* [http://www.koders.com/info.aspx?c=ProjectInfo&pid=RNTRP1H6RPT2UALTHTDUP3ZYWE GDAL als Teil von Maptools.org auf koders.com]
 
== Tiled Raster Files ==
 
 
See also [[GeoServer]].
 
 
Convert TIFF (tif+tfw) to [[GeoTIFF]] with GDAL:
 
 
  gdal_translate -of GTiff -co "TILED=YES" input.tif tiledGeotif.tif
 
 
By using the TILED=YES parameter we ask the command to prepare the file for tiles rendering. Now the size of the resulting file is larger.
 
 
Then create overviews for the GeoTIFF file:
 
 
  gdaladdo -r average tiledGeotif.tif 2 4 8 16
 
  
 
== Formate ==
 
== Formate ==
Zeile 51: Zeile 38:
 
* WCS (ro): OGC Web Coverage Service
 
* WCS (ro): OGC Web Coverage Service
 
* WMS (ro): OGC Web Map Service
 
* WMS (ro): OGC Web Map Service
 +
 +
[[Kategorie:Raster]]

Version vom 4. Dezember 2011, 03:23 Uhr

GDAL (ausgesprochen "Gudel") ist eine Rasterformate-Bibliothek, die in den FWTools (C++ Open Source-Programme von Frank Warmerdam) zusammengefasst sind und typischerweise über die Kommandozeile gesteuert werden.

Siehe auch:

Alternative Rasterdaten-Konverter:

  • TatukGIS Viewer (free, Windows)
  • ECW Header Editor, ERMapper (free, Windows)

Dokumentation

Weblinks:

Formate

Hier ein Auszug aus den verfügbaren Rasterformate ('ro' is read-only driver; 'rw' is read or write (ie. supports CreateCopy); 'rw+' is read, write and update (ie. supports Create)):

  • BMP (rw+): MS Windows Device Independent Bitmap
  • GIF (rw): Graphics Interchange Format (.gif)
  • GMT (rw): GMT NetCDF Grid Format
  • GTiff (rw+): GeoTIFF
  • HFA (rw+): Erdas Imagine Images (.img)
  • ILWIS (rw+): ILWIS Raster Map
  • INGR (rw+): Intergraph Raster
  • JP2ECW (rw+): ERMapper JPEG2000
  • JP2MrSID (ro): MrSID JPEG2000
  • JPEG (rw): JPEG JFIF
  • MrSID (ro): Multi-resolution Seamless Image Database (MrSID)
  • PNG (rw): Portable Network Graphics
  • PNM (rw+): Portable Pixmap Format (netpbm)
  • RMF (rw+): Raster Matrix Format
  • SDTS (ro): SDTS Raster
  • SRTMHGT (rw): SRTMHGT File Format
  • USGSDEM (rw): USGS Optional ASCII DEM (and CDED)
  • VRT (rw+): Virtual Raster
  • WCS (ro): OGC Web Coverage Service
  • WMS (ro): OGC Web Map Service