GeoTIFF: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: See also: * GDAL - Translator == Tipps === * Howto convert Tiff to GeoTIFF: See GDAL. * How can one remove the nodata values from a GeoTIFF? I find many inst...)
 
(Tipps =)
Zeile 2: Zeile 2:
 
* [[GDAL]] - Translator
 
* [[GDAL]] - Translator
  
== Tipps ===
+
== Tipps ==
  
 
* Howto convert Tiff to GeoTIFF: See [[GDAL]].
 
* Howto convert Tiff to GeoTIFF: See [[GDAL]].

Version vom 30. Dezember 2008, 14:31 Uhr

See also:

Tipps

  • Howto convert Tiff to GeoTIFF: See GDAL.
  • How can one remove the nodata values from a GeoTIFF? I find many instructions on how to add the values, but none on how to remove them. => There isn't a direct way of accomplishing this. You could extract a work.vrt file, then manually edit it and remove the line(s) with the NoDataValue tags. Then convert back to geotiff:
 % gdal_translate -of VRT your.tif work.vrt
 % gdal_translate work.vrt fixed_your.tif