Hi all, I have some datasets I've been converting via gdal.Translate() to self-contained Cloud-style GeoTIFFs (ie. as one file). For a handful of datasets that have band descriptions:
... Band 1 Block=256x256 Type=Byte, ColorInterp=Red Description = Band_1 Min=1.000 Max=255.000 Minimum=1.000, Maximum=255.000, Mean=78.774, StdDev=29.672 Metadata: LAYER_TYPE=athematic STATISTICS_MAXIMUM=255 ... I sometimes end up with .aux.xml files that look like this: <PAMDataset> <PAMRasterBand band="1"> <Description>Band_1</Description> </PAMRasterBand> <PAMRasterBand band="2"> <Description>Band_2</Description> </PAMRasterBand> <PAMRasterBand band="3"> <Description>Band_3</Description> </PAMRasterBand> </PAMDataset> The .aux.xml goes away after a subsequent Translate(), and if I delete the .aux.xml file the description is still present via gdalinfo, so the data is presumably in the .tif. Is it possible to prevent creation of the .aux.xml in this case? I was using the presence of any extra files as a warning that something might have been missed in the TIFF conversion. Cheers, Rob :)
_______________________________________________ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/gdal-dev