MapProjectionProjectionOrigin Method |
Returns the geographical origin of the projection defined by the
projstring
If the projection string is not a valid WKT string, an exception is thrown.
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static void ProjectionOrigin(
string projstring,
out double lon,
out double lat
)
Public Shared Sub ProjectionOrigin (
projstring As String,
<OutAttribute> ByRef lon As Double,
<OutAttribute> ByRef lat As Double
)
public:
static void ProjectionOrigin(
String^ projstring,
[OutAttribute] double% lon,
[OutAttribute] double% lat
)
static member ProjectionOrigin :
projstring : string *
lon : float byref *
lat : float byref -> unit
Parameters
- projstring
- Type: SystemString
A string the the WKT format for a spatial reference system - lon
- Type: SystemDouble
Longitude coordinate of the projection origin - lat
- Type: SystemDouble
Latitude coordinate of the projection origin
See Also