/// <summary> /// Gets the name of the projection associated with the specified NAD83 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 GetNAD83ProjectionName(tkNad83Projection projectionID) { throw new NotImplementedException(); }
/// <summary> /// Initializes the object with NAD83 projection specified by enumerated constant. /// </summary> /// <param name="Projection">Numeric code of the projection (EPSG code).</param> public void SetNad83Projection(tkNad83Projection Projection) { throw new NotImplementedException(); }