Crates.io | iso6709parse |
lib.rs | iso6709parse |
version | 0.1.0 |
source | src |
created_at | 2023-08-14 00:51:02.56928 |
updated_at | 2023-08-14 00:51:02.56928 |
description | Parses coorindates in ISO6709 format from strings |
homepage | |
repository | https://github.com/TimLikesTacos/iso6709parse.git |
max_upload_size | |
id | 943723 |
size | 47,118 |
This library uses the nom
crate to create parsers to quickly convert ISO6709 formatted strings. This results in a much faster parse than using Regex based libraries, from 4 to 10x faster.
From
traits have been implemented for the geo_types
crate for easy conversion from strings.
Supports formats for latitude with N
or S
and E
and W
instead of +
or -
:
±DD.DD
±DDMM.MMM
±DDMMSS.SSS
for longitude:
±DDD.DDD
±DDDMM.MMM
±DDDMMSS.SSS
along with altitude when properly formatted IAW ISO6709, for example +1200.00-02130.00+2321CRS_WGS_85/
Also supports the "Human Readable" format:
DD°MM′SS.SSS″N DDD°MM′SS.SSS″W
/// rust ///use iso6709parse::parse; /// ///let coord: geo_types::Coord = parse("N35.50W170.10+8712CRSWGS_85/").unwrap(); ///assert_eq!(coord.y, 35.5); /// ///