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