osm_overpass

Crates.ioosm_overpass
lib.rsosm_overpass
version0.1.2
sourcesrc
created_at2024-07-16 10:26:01.382383
updated_at2024-07-16 15:01:27.997536
descriptionA library to run Overpass queries against OSM Overpass servers.
homepage
repository
max_upload_size
id1304921
size16,477
Daniel Ledger (DanielLedger)

documentation

README

OSM Overpass

A library to query OSM Overpass servers

Example

Async example

let url = String::from("https://overpass-api.de/api/interpreter");
let query = "
[out:json][timeout:30];
node(3662847634);
// print results
out;
";
let api = api::OverpassAPI::new(url);
let res = api.query(String::from(query)).await;
...

Sync example

...
let res = api.query_sync(String::from(query));

Using query response

...
let unwrapped = res.unwrap();
//unwrapped is iterable, so
for nwr in unwrapped {
    match nwr {
        NWR::Node(n) => ...,
        NWR::Way(w) => ...,  
        NWR::Relation(r) => ...      
    }
}

Notes

Queries must return a JSON result. Put [out:json] in the first line of the query to do this.

Commit count: 0

cargo fmt