GeoConvert.TryParsePointText

GeoConvert.TryParsePointText method

Converts the string that contains сoordinates to IPoint object. A return value indicates whether the conversion succeeded or failed.

public static bool TryParsePointText(string text, out IPoint point)
ParameterTypeDescription
textStringA string that contains coordinates to convert. The string should contain both coordinate latitude and longitude. Coordinates should be separated by whitespace, by comma or by semicolon.
pointIPoint&When this method returns, contains the IPoint object with parsed coordinates, if the conversion succeeded, or null if the conversion failed.

Return Value

True if text was parsed successfully, otherwise False.

Remarks

Examples: “80° 151°”, “74°50.82’, 172°08.21’”, “80°;151°”, “2CMB”, “2CMB6682893142”, “2C MB 66828 93142”, “WMAQ12405535”.

See Also