hi all,
i wanted to write the following program in C (which i took from gdal.org)
////////////////////////////////////////////////////////////
#include "gdal.h"
int main()
{
GDALDatasetH hDataset;
GDALAllRegister();
hDataset = GDALOpen( pszFilename, GA_ReadOnly );
if( hDataset == NULL )
{
...;
}
}
////////////////////////////////////////////////////////////
where can i get the gdal.h? thanks a lot!
_______________________________________________
gdal-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/gdal-dev