uot;Pointer to an Array of Pointers to String Zero-
terminated" (papsz), the array itself being terminated by a NULL pointer
for( char** papszIter = papszMetadataSet; *papszIter != NULL; papszIter++ )
printf("%s\n", *papszIter);
>
> Best regards ,
> - Nevzat
>
, January 01, 2016 5:03 AM
To: gdal-dev@lists.osgeo.org
Cc: ngu...@jlab.org
Subject: Re: [gdal-dev] Metadata from GeoTIFF to ENVI
Le jeudi 31 décembre 2015 23:31:40, ngu...@jlab.org a écrit :
> Dear GDAL Users,
>
> I am reading a GeoTIFF file and creating an ENVI file. I don't want
Le jeudi 31 décembre 2015 23:31:40, ngu...@jlab.org a écrit :
> Dear GDAL Users,
>
> I am reading a GeoTIFF file and creating an ENVI file. I don't want to use
> the CreateCopy method but the Create method.
>
> I tried something like the following to transfer the metadata:
>
>char **papszMet
Dear GDAL Users,
I am reading a GeoTIFF file and creating an ENVI file. I don't want to use the
CreateCopy method but the Create method.
I tried something like the following to transfer the metadata:
char **papszMetadataSet;
papszMetadataSet = poDataset->GetMetadata();
poDstDS->SetMetad