Parses Mercator Y from the provided string.
true - the function has succeeded, false - it has failed
The function verifies validity of the parsing result. The valid Mercator Y is a real number.
This sample shows how to call the Mercator.ParseMercatorYInM method from C# code:
string errorMessage = String.Empty;
string str = "-4844685.62652945";
double yInM = Double.NaN;
if (Mercator.ParseMercatorYInM(str, out yInM, out errorMessage))
{
Console.WriteLine("Y, in m: " + yInM.ToString());
}
else
{
Console.WriteLine(errorMessage);
}