GeoTIFF

Aus Geoinformation HSR
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