We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know if it's a bug or if I'm doing something wrong. I create an eyros database with ingest like this (both are on eyros 4.6.1:
ingest
cargo +nightly run --release -- ingest --pbf ../../data/berlin-latest.osm.pbf --edb ../edb/
And they try to query it via:
cargo +nightly run --release --example query -- ../edb -180,-90,180,90
I get this error:
thread 'main' panicked at 'range start index 559651500 out of range for slice of length 24054', /eyros/src/bytes/from.rs:154:22
The text was updated successfully, but these errors were encountered:
This is probably because the eyros/examples/query.rs value type is u32, but peermaps-ingest and the whole peermaps stack uses a value type of Vec<u8>.
eyros/examples/query.rs
Vec<u8>
Sorry, something went wrong.
No branches or pull requests
I don't know if it's a bug or if I'm doing something wrong. I create an eyros database with
ingest
like this (both are on eyros 4.6.1:And they try to query it via:
I get this error:
The text was updated successfully, but these errors were encountered: