在GDAL拒绝生成.aux.xml文件

在删除GDALDataset的时候GDAL会帮我们生成.aux.xml文件,如果我们不需要这个文件我们可以通过设置标志位来拒绝生成这些文件。下面是摘自http://permalink.gmane.org/gmane.comp.gis.gdal.devel/22681的方法

主要方法是设置

GPF_NOSAVE

标志位,具体代码如下:

 
 #include <iostream>
 #include <gdal.h>
 #include <gdal_priv.h> // for GDALDataset
 #include <gdal_pam.h> // for GDALPamDataset
 int main(int argc, char **argv)
 {
   GDALAllRegister();
   GDALDataset *ds = (GDALDataset *)GDALOpen("S:\\Maps\\aux_test.png", GA_ReadOnly);
   GDALPamDataset *pamDs = dynamic_cast<GDALPamDataset *>(ds);
   if (pamDs != NULL)
   {
     // with Debug DLLs, this prints number like 18666064,
     // while with release DLLs, this outputs 0.
     std::cout << "Initial flags: " << pamDs->GetPamFlags() << std::endl;
     int pamFlags = pamDs->GetPamFlags();
     pamFlags |= GPF_NOSAVE;
     // changing flag further corrupts PNG dataset?
     pamDs->SetPamFlags(pamFlags);
   }
   GDALClose(ds); // access violation with MSFT Debug DLLs
   GDALDestroyDriverManager();
 }


你可能感兴趣的:(在GDAL拒绝生成.aux.xml文件)