Changes between Initial Version and Version 2 of Ticket #6437


Ignore:
Timestamp:
Apr 4, 2016, 4:13:54 AM (8 years ago)
Author:
ccjklppp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6437

    • Property Versionunspecified
  • Ticket #6437 – Description

    initial v2  
    1 1. I tried using Gdal.wrapper_GDALBuildVRT_names to build a vrt. although I got progeress of 100%, the destination file hasn't been created.
    2 the code I used:
    3 
    4 {{{
    5 var options = new GDALBuildVRTOptions(new string[0]);
    6 var input = new string[] {@"D:\test.tif"};
    7 Gdal.wrapper_GDALBuildVRT_names(@"D:\test.vrt", input, options, null, null);
    8 }}}
    9 
    10 
    11 2. one of the Gdal.wrapper_GDALWarpDestName parameters is of type SWIGTYPE_p_p_GDALDatasetShadow. shouldn't it be of type Dataset[]? what is the way to use it?
     1I'm using the c# binding. one of the Gdal.wrapper_GDALWarpDestName parameters is of type SWIGTYPE_p_p_GDALDatasetShadow. shouldn't it be of type Dataset[]? what is the way to use it?