Parses / determines the UTM hemisphere from the provided string.
true - the function has succeeded, false - it has failed
This sample shows how to call the UTM.ParseUtmHemisphere method from C# code:
string errorMessage = String.Empty;
string str = "38 53 20.9 N";
UtmHemisphere utmHemisphere = UtmHemisphere.NotDefined;
if (UTM.ParseUtmHemisphere(str, out utmHemisphere, out errorMessage))
{
Console.WriteLine(utmHemisphere);
}
else
{
Console.WriteLine(errorMessage);
}