<div dir="ltr"><div>You should use null in the constructor if you don't want to specity a wkt during the initialization, something like:</div><div><br></div><div><b>SpatialReference srs = new SpatialReference(null);<br>srs.ImportFromEPSG(2927);</b><br></div><div><br></div><div>Best regards,</div><div><br></div><div>Tamas</div><div dir="ltr"><br></div><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Paul Harwood <<a href="mailto:runette@gmail.com">runette@gmail.com</a>> ezt írta (időpont: 2020. jún. 16., K, 19:01):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">A common pattern for creating a SpatialReference is this :<div><pre style="white-space:pre-wrap;overflow:auto hidden;padding:5px;background-color:rgb(238,255,204);color:rgb(51,51,51);line-height:15.6px;border-top:1px solid rgb(170,204,153);border-bottom:1px solid rgb(170,204,153);border-left:none;border-right:none"><span style="color:rgb(0,112,32);font-weight:bold">from</span> <span style="color:rgb(14,132,181);font-weight:bold">osgeo</span> <span style="color:rgb(0,112,32);font-weight:bold">import</span> osr
spatialRef <span style="color:rgb(102,102,102)">=</span> osr<span style="color:rgb(102,102,102)">.</span>SpatialReference()
spatialRef<span style="color:rgb(102,102,102)">.</span>ImportFromEPSG(<span style="color:rgb(32,128,80)">2927</span>)         <span style="color:rgb(64,128,144);font-style:italic"># from EPSG</span></pre></div><div>( this example is from the Python Cookbook and is just used to illustrate the pattern)</div><div><br></div><div>But - when I try to do the equivalent in c# using the bindings :</div><div><br></div><div>SpatialReference CRS = new SpatialReference();<br></div><div>CRS.ImportFromMICoordSys(coordsys);</div><div><br></div><div>I get a message </div><div><br></div><div>error CS1729: 'SpatialReference' does not contain a constructor that takes 0 arguments<br></div><div><br></div><div>Am I missing something? Or is this is a gap in the bindings?</div></div>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org" target="_blank">gdal-dev@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/gdal-dev" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/gdal-dev</a></blockquote></div></div>