Changes between Initial Version and Version 1 of Ticket #3522


Ignore:
Timestamp:
Apr 7, 2010, 8:56:06 AM (14 years ago)
Author:
warmerdam
Comment:

I think you will need to be more specific about how to reproduce this. For instance what format is in use?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3522

    • Property Component defaultGDAL_Raster
  • Ticket #3522 – Description

    initial v1  
    22
    33As a work around, GDALSetMetadataItem() works after a call to the function GDALGetProjectionRef(), code below:
    4 
     4{{{
    55hSrcDS = GDALOpen(fileName, GA_Update);
    66// added in order to have area_or_point metadata with 1.7.x release
     
    99const char* pixelOrPoint=GDALGetMetadataItem(hSrcDS,GDALMD_AREA_OR_POINT,NULL);
    1010GDALClose(hSrcDS);
     11}}}