Re: [gdal-dev] write to GML

2011-01-22 Thread Even Rouault
Le samedi 22 janvier 2011 11:20:48, Mohammed Rashad a écrit : > this works > poDS = OGRSFDriverRegistrar::Open( "point_out.xml", FALSE ); > if( poDS == NULL ) > { > printf( "Open failed.\n" ); > } > but the following is not working > poDS = OGRSFDriverRegistrar::Open( "point_out

[gdal-dev] write to GML

2011-01-22 Thread Mohammed Rashad
this works poDS = OGRSFDriverRegistrar::Open( "point_out.xml", FALSE ); if( poDS == NULL ) { printf( "Open failed.\n" ); } but the following is not working poDS = OGRSFDriverRegistrar::Open( "point_out.xml", TRUE ); if( poDS == NULL ) { printf( "Open failed.\n" )