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