Checks if the provided UTM zone is valid, i.e. it is not undefined and it is not outside its range.
true - if the UTM zone is valid, false - if the UTM zone is invalid
This sample shows how to call the UTM.IsValidUtmZone method from C# code:
string errorMessage = String.Empty;
UtmZone utmZone = UtmZone.Zone_03_from_168W_to_162W;
if (UTM.IsValidUtmZone(utmZone, out errorMessage))
{
Console.WriteLine("UTM zone is valid.");
}
else
{
Console.WriteLine(errorMessage);
}