CoordinateTryParse(String, DateTime, CartesianType, EagerLoad, Allowed_Parse_Format, Coordinate) Method
Attempts to parse a string into a Coordinate with a specified date, Cartesian system type 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 bool TryParse(
string value,
DateTime geoDate,
CartesianType cartesianType,
EagerLoad eagerLoad,
Allowed_Parse_Format formats,
out Coordinate coordinate
)
- value String
- Coordinate string
- geoDate DateTime
- GeoDate
- cartesianType CartesianType
- Cartesian Type
- eagerLoad EagerLoad
- Eager loading options
- formats Allowed_Parse_Format
- Allowed parse formats
- coordinate Coordinate
- Coordinate
Booleanboolean
The following example parses an ECEF formatted coordinate string, with an included GeoDate. Parsable format is restricted to Lat/Long and Cartesian/ECEF.
Because this is an ECEF Cartesian type coordinate, we will specify the Cartesian system type.
Eager loading options have been specified for efficiency.
Coordinate c;
EagerLoad el = new EagerLoad(EagerLoadType.Cartesian);
Allowed_Parse_Format formats = Allowed_Parse_Format.Lat_Long | Allowed_Parse_Format.Cartesian_ECEF;
if(Coordinate.TryParse("5242.097 km, 2444.43 km, 2679.074 km", new DateTime(2018,7,7), CartesianType.ECEF, el, out c))
{
Console.WriteLine(c); //N 24º 59' 59.987" E 25º 0' 0.001"
}