UniversalTransverseMercatorTryParse(String, Earth_Ellipsoid_Spec, 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,
	Earth_Ellipsoid_Spec spec,
	out UniversalTransverseMercator utm
)

Parameters

value  String
string
spec  Earth_Ellipsoid_Spec
Earth_Ellipsoid_Spec
utm  UniversalTransverseMercator
UniversalTransverseMercator

Return Value

Boolean
UniversalTransverseMercator

Example

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

See Also