This commit is contained in:
randogoth 2025-02-26 10:59:24 +00:00
parent 9902419b41
commit 7d24fb338a
3 changed files with 15 additions and 86 deletions

13
.justfile Normal file
View file

@ -0,0 +1,13 @@
extract input output:
quackosm {{input}} --osm-tags-filter-file tags.json --silent --compact --output {{output}}
download region output:
quackosm --geom-filter-geocode {{region}} --osm-extract-source Geofabrik --osm-tags-filter-file tags.json --compact --output {{output}}
convert input output:
python3 slice.py --input {{input}} --output {{output}}
plot file:
#!/usr/bin/env bash
stem=$(basename {{file}} .parquet)
python3 plot.py -i {{file}} -o ${stem}.png