-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to osmx-rs for indexing and also overhaul language detection
- Loading branch information
Showing
14 changed files
with
515 additions
and
887 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# How to index an OSM file | ||
|
||
This is an extremely quick writeup mostly for my own use, so please pardon the dust. | ||
|
||
These are the commands I use. | ||
|
||
mkdir -p ~/index; rm ~/index/* ; RUST_LOG=info cargo run --release --bin airmail_import_osm -- --wof-db ~/Downloads/whosonfirst-data-admin-latest.spatial.db --index ~/index --admin-cache ~/admins --docker-socket /run/user/1000/podman/podman.sock --osmflat ~/Downloads/seattle-latest.osmflat | ||
|
||
RUST_LOG=info cargo run --release --bin airmail_service -- --index ~/index |
Oops, something went wrong.