GeoTIFF

Aus Geoinformation HSR
Version vom 30. Dezember 2008, 14:31 Uhr von Stefan (Diskussion | Beiträge) (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...)

(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

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