A common pattern for creating a SpatialReference is this :

from osgeo import osr
spatialRef = osr.SpatialReference()
spatialRef.ImportFromEPSG(2927)         # from EPSG

( this example is from the Python Cookbook and is just used to illustrate
the pattern)

But - when I try to do the equivalent in c# using the bindings :

SpatialReference CRS = new SpatialReference();
CRS.ImportFromMICoordSys(coordsys);

I get a message

error CS1729: 'SpatialReference' does not contain a constructor that takes
0 arguments

Am I missing something? Or is this is a gap in the bindings?
_______________________________________________
gdal-dev mailing list
[email protected]
https://lists.osgeo.org/mailman/listinfo/gdal-dev

Reply via email to