Open
Description
e.g. the default overpass-turbo script:
/*
This is an example Overpass query.
Try it out by pressing the Run button above!
You can find more examples with the Load tool.
*/
node
[amenity=drinking_water]
({{bbox}});
out;
- click run
- click export
- then download/copy as raw OSM data
You'll get a file like this (though unzipped):
overpass-export-bom.osm.gz
When I try to process it, the osmio parser explodes with:
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Error { pos: 1:1, kind: Syntax("Unexpected characters outside the root element: \u{feff}") }', /Users/mkirk/src/georust/osmio/src/xml/mod.rs:65:25
stack backtrace:
0: rust_begin_unwind
at /rustc/9bc8c42bb2f19e745a63f3445f1ac248fb015e53/library/std/src/panicking.rs:493:5
1: core::panicking::panic_fmt
at /rustc/9bc8c42bb2f19e745a63f3445f1ac248fb015e53/library/core/src/panicking.rs:92:14
2: core::option::expect_none_failed
at /rustc/9bc8c42bb2f19e745a63f3445f1ac248fb015e53/library/core/src/option.rs:1329:5
3: core::result::Result<T,E>::unwrap
at /Users/mkirk/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/src/rust/library/core/src/result.rs:1037:23
4: <osmio::xml::XMLReader<R> as osmio::OSMReader>::next
at /Users/mkirk/src/georust/osmio/src/xml/mod.rs:65:22
5: <osmio::OSMObjectIterator<R> as core::iter::traits::iterator::Iterator>::next
at /Users/mkirk/src/georust/osmio/src/lib.rs:505:9
6: osm2fgb::convert_xml
at ./src/main.rs:63:20
7: osm2fgb::main
at ./src/main.rs:46:5
8: core::ops::function::FnOnce::call_once
at /Users/mkirk/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5
If I open in vim, run :set nobomb
and save it as: overpass-export-nobom.osm.gz, then osmio can successfully process the input.
Metadata
Metadata
Assignees
Labels
No labels