wiki:GdalOgrCsharpVersions

Version 6 (modified by tamas, 17 years ago) ( diff )

--

GDAL/OGR CSharp interface versions

The GDAL/OGR CSharp interface is fairly new and the first official version was published along with the GDAL 1.4.0 release. As of the 1.4.0 release there was a substantial evolution in the interface based on the various user requests. Some of these changes in the current version (1.5.0) were backward incompatible with 1.4.0 and the transition to the current development version is suggested for the interface users and 1.4.0 is considered as deprecated.

The main differences between 1.4.0 and 1.5.0, and the migration steps for the existing code

This chapter describes the fundamental differences between the 1.4.0 and 1.5.0 versions. Although the 1.5.0 version is not yet released the CSharp interface users are encouraged to make this transition as soon as possible since it will be more difficult to make these steps later.

Support for the enumerated types of the C# interface (#1559)

The 1.4.0 version treats the enumerated types as integers. Handling integers instead of enums is quite uncomfortable for the .NET developers since they don't enjoy the benefit of the autocompletion support of the IDE and it's quite an unconfortable to find out the possible values of a particular type. The 1.5.0 version exposes the enumerated types to the interface and therefore the programmer should use the proper values instead of using integer constants of the module class or using the constants from the gdalconst assembly. Every CSharp sample application has also been modified to reflect this behaviour.

As an example in GDALColorTable.cs we use

ds = Gdal.Open(file, Access.GA_ReadOnly)

instead of

ds = Gdal.Open(file, gdalconst.GA_ReadOnly)

C# namespace names and module names follows the .NET framework naming guidelines (#1560)

The C# namespace names and the module names were changed according to the Microsoft.NET naming guidelines.

The general rule for naming namespaces is to use the company name followed by the technology name and optionally the feature and design as follows.

CompanyName.TechnologyName[.Feature][.Design]

For example:

Microsoft.Media
Microsoft.Media.Design

We should use PascalCase for namespaces, and separate logical components with periods, and avoid using the same name for a namespace and a class.

As far as we can we use PascalCase for the acronyms and UpperCase for the abbreviations.

The following GDAL/OGR namespace names were used:

  • OSGeo.GDAL
  • OSGeo.OGR
  • OSGeo.OSR

The programmer should import these OSGeo prefixed namespaces instead of the old ones like:

import OSGeo.OGR

instead of

import OGR

The following module names were used:

  • Gdal
  • Ogr
  • Osr
  • GdalConst

These module classes contain the static functions related to a particular project so the invocation of these function is changed accordingly. For example we should use :

Driver drv = Ogr.GetDriverByName("ESRI Shapefile");

instead of:

Driver drv = ogr.GetDriverByName("ESRI Shapefile");

Many of the functions use the CPLErr enum as the return value but some of them still use integers though. This behaviour itself falls outside the scope of the C# bindings, so the developes may use type casts whenever needed like:

if (ds.BuildOverviews(args[1], levels) != (int)CPLErr.CE_None)
{
   Console.WriteLine("The BuildOverviews operation doesn't work");
}

Changed the names of the Windows builds for a better match with the GNU/Linux/OSX builds

The 1.4.0 version uses different filenames for the Windows and the GNU/Linux/OSX builds. This behaviour makes difficult to include the SWIG generated interface files into the daily shapshot because the wrappers are genereted on Linux but should be usable also on Windows. Since the Windows builds have been affected by this change the programmers should be aware making references to the proper assembles in this case like:

csc /r gdal_csharp.dll /out:MyEXE.exe MySource.cs

instead of:

csc /r gdal_gdal_csharp.dll /out:MyEXE.exe MySource.cs

The gdalconst assembly is now deprecated

The constans related to the GDAL and OGR projects are now included in the corresponding assemblies. There's no need to reference a separate assembly any more. In addition many of the existing constants might have to be changed, like:

ColorTable ct = new ColorTable(PaletteInterp.GPI_RGB);

instead of using

ColorTable ct = new ColorTable(gdalconst.GPI_RGB);

GDAL C# libtool build support (#1558)

The 1.4.0 version required to use the --without-libtool parameter at the configuration of the GNU/Linux/OSX builds. This problem have been corrected with the latest development version and will not be backported to 1.4.0.

CreateFromWkb support (#1565)

Dataset.ReadRaster, Dataset.WriteRaster support

Added support for Dataset.BuildOverviews (#1552)

Examples added

Note: See TracWiki for help on using the wiki.