CoordinateParse(String, EagerLoad, Allowed_Parse_Format) Method
Parses a string into a Coordinate with specified eager loading settings.
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,
EagerLoad eagerLoad,
Allowed_Parse_Format formats
)
- value String
- Coordinate string
- eagerLoad EagerLoad
- Eager loading options
- formats Allowed_Parse_Format
- Allowed parse formats
CoordinateCoordinate
The following example parses a decimal degree formatted geodetic coordinate string. Parsable format is restricted to Lat/Long and Cartesian/ECEF.
Eager loading is turned off for improved efficiency.
EagerLoad el = new EagerLoad(false);
Allowed_Parse_Format formats = Allowed_Parse_Format.Lat_Long | Allowed_Parse_Format.Cartesian_ECEF;
Coordinate c = Coordinate.Parse("N 32.891º W 64.872º", el, formats);