CoordinateParse(String, DateTime, EagerLoad) Method
Parses a string into a Coordinate with a specified date and 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,
DateTime geoDate,
EagerLoad eagerLoad
)
- value String
- Coordinate string
- geoDate DateTime
- GeoDate
- eagerLoad EagerLoad
- Eager loading options
CoordinateCoordinate
The following example parses a decimal degree formatted geodetic coordinate string with a provided GeoDate.
Eager loading is set to load celestial calculations only.
EagerLoad el = new EagerLoad(EagerLoadType.Celestial);
Coordinate c = Coordinate.Parse("N 32.891º W 64.872º", new DateTime(2018,7,7), el);