Changes between Version 2 and Version 10 of Ticket #6437


Ignore:
Timestamp:
Feb 2, 2017, 1:30:17 PM (7 years ago)
Author:
ccjklppp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6437

    • Property Milestone 2.1.02.2.0
    • Property Summary Gdal utilities as a libraryMissing typemaps in C# binding for Gdal
  • Ticket #6437 – Description

    v2 v10  
    1 I'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?
     1I'm using the c# binding.all methods that should get as argument Dataset[], actually expects type SWIGTYPE_p_p_GDALDatasetShadow instead.
     2this happens in the following methods:\\
     3Gdal.CreatePansharpenedVRT(...)\\
     4Gdal.wrapper_GDALBuildVRT_objects(...)\\
     5Gdal.wrapper_GDALWarpDestDS(...)\\
     6Gdal.wrapper_GDALWarpDestName(...)\\
     7\\
     8moreover, the method Gdal.wrapper_GDALVectorTranslateDestDS(...) expect to get Datasets (src & dst) while it should get Datasource (vector) isn't it?