latlon

Parse geographic coordinates from string.

A wide range of commonly used formats is supported. See the unit tests for a complete reference.

If a format you need is missing, please submit a merge request (including unit tests).

Usage

```rust // parse a coord let coord : geo::Point = latlon::parse("N 50°5.30385', E 14°26.94732'").unwrap();

// individual lat/lng parsing let lat : f64 = latlon::parselat("N 50°5.30385'").unwrap(); let lng : f64 = latlon::parselng("E 14°26.94732'").unwrap(); ```

Supported formats

Example of supported formats:

Parser rules