CoordinateParse(String, CartesianType, Allowed_Parse_Format) Method
Parses a string into a Coordinate with a specified Cartesian system type.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public static Coordinate Parse(
string value,
CartesianType cartesianType,
Allowed_Parse_Format formats
)
- value String
- Coordinate string
- cartesianType CartesianType
- Cartesian Type
- formats Allowed_Parse_Format
- Allowable parse formats
CoordinateCoordinate
The following example parses an ECEF formatted coordinate string.
Because this is an ECEF Cartesian type coordinate, we will specify the Cartesian system type. Parsable format is restricted to Lat/Long and MGRS.
Allowed_Parse_Format formats = Allowed_Parse_Format.Lat_Long | Allowed_Parse_Format.MGRS;
Coordinate c = Coordinate.Parse("5242.097 km, 2444.43 km, 2679.074 km", CartesianType.Cartesian, formats);