mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
603717a560
mapped as separate OSM ways in all maps!!! #330
33 lines
1.4 KiB
Bash
Executable File
33 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# This script imports a site from
|
|
# https://github.com/cyipt/actdev/tree/main/data-small as a new city and map.
|
|
# It follows https://a-b-street.github.io/docs/howto/new_city.html.
|
|
|
|
set -e
|
|
|
|
# This should be a directory name from https://github.com/cyipt/actdev/tree/main/data-small
|
|
SITE=$1
|
|
if [ "$SITE" == "" ]; then
|
|
echo Missing args;
|
|
exit 1;
|
|
fi
|
|
CITY=`echo $SITE | sed -r 's/-/_/g'`
|
|
|
|
cp -Rv importer/config/gb/leeds importer/config/gb/$CITY
|
|
rm -fv importer/config/gb/$CITY/*.poly
|
|
wget https://raw.githubusercontent.com/cyipt/actdev/main/data-small/$SITE/small-study-area.geojson
|
|
cargo run --bin geojson_to_osmosis < small-study-area.geojson
|
|
rm -fv small-study-area.geojson
|
|
mv boundary0.poly importer/config/gb/$CITY/center.poly
|
|
GEOFABRIK=`cargo run --bin pick_geofabrik importer/config/gb/$CITY/center.poly`
|
|
echo "Geofabrik URL is $GEOFABRIK"
|
|
perl -pi -e "s#\"osm_url\": \".*\"#\"osm_url\": \"$GEOFABRIK\"#" importer/config/gb/$CITY/cfg.json
|
|
|
|
wget https://raw.githubusercontent.com/cyipt/actdev/main/data-small/$SITE/site.geojson -O data/system/study_areas/$SITE.geojson
|
|
|
|
./import.sh --raw --map --city=gb/$CITY
|
|
|
|
echo "You have to manually update .gitignore, map_gui/src/tools/mod.rs, release/deploy_actdev.sh"
|
|
echo "You might need to procedurally generate houses."
|
|
echo "And after uploading, probably want to: cargo run --bin updater -- --opt-into-all > data/player/data.json"
|