UniversalTransverseMercatorTryParse(String, UniversalTransverseMercator) Method

Attempts to parse a string into an UTM coordinate.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public static bool TryParse(
	string value,
	out UniversalTransverseMercator utm
)

Parameters

value  String
string
utm  UniversalTransverseMercator
UniversalTransverseMercator

Return Value

Boolean
UniversalTransverseMercator

Example

The following example attempts to parse a UTM coordinate set with the default WGS84 ellipsoid.
C#
UniversalTransverseMercator utm;
if(!UniversalTransverseMercator.TryParse("16U 500872mE 5505009mN", out utm))
{
    Console.WriteLine(utm);//16U 500872mE 5505009mN
}

See Also