Esempio n. 1
0
 /// <summary>
 /// Gets the name of the projection associated with the specified WGS84 enumeration
 /// </summary>
 /// <param name="projectionID">
 /// Value from the the NAD83 projection enumeration tkNad83Projection
 /// </param>
 /// <returns>GDAL-provided projection name, or an empty string on error</returns>
 /// <remarks>
 /// If an error occurs, either because an invalid ID is specified, or the projection string
 /// could not be loaded, a descriptive error will be raised to the Callback function (if one is specified).
 /// </remarks>
 /// \new495 Added in version 4.9.5
 public string GetWGS84ProjectionName(tkWgs84Projection projectionID)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes the object with WGS84 projection specified by enumerated constant.
 /// </summary>
 /// <param name="Projection">Numeric code of the projection (EPSG code).</param>
 public void SetWgs84Projection(tkWgs84Projection Projection)
 {
     throw new NotImplementedException();
 }