Checks if the provided UTM Hemisphere is valid, i.e. it is not undefined and it is not outside its range.
true - if the UTM hemisphere is valid, false - if the UTM hemisphere is invalid
The valid UTM hemisphere is Northern or Southern.
This sample shows how to call the UTM.IsValidUtmHemisphere method from C# code:
string errorMessage = String.Empty;
UtmHemisphere utmHemisphere = UtmHemisphere.Northern;
if (UTM.IsValidUtmHemisphere(utmHemisphere, out errorMessage))
{
Console.WriteLine("UTM hemisphere is valid.");
}
else
{
Console.WriteLine(errorMessage);
}