3.0 KiB
Importing a new city into A/B Street
This process isn't easy yet. Please email dabreegster@gmail.com or file a Github issue if you hit problems. I'd really appreciate help and PRs to improve this.
Quick start
If you have a .osm
file, you can just run
./import.sh --oneshot=/absolute/path/to/map.osm
. This tool will generate a new
file in data/system/maps
that you can then load in the game. (If you can't run
import.sh
, make sure you have all dependencies.
If you're using a binary release, you have to be sure to run the tool from the
importer/
directory, so that ../data/
exists:
cd importer; ./importer --oneshot=/absolute/path/to/file.osm
If you have an Osmosis polygon filter (see below), you can also pass
--oneshot_clip=/absolute/path/to/clip.poly
to improve the result. You should
first make sure your .osm has been clipped:
osmconvert large_map.osm -B=clipping.poly --complete-ways -o=smaller_map.osm
.
You can also try --oneshot_drive_on_left
, but you'll spot some bugs. Get in
touch if you need these fixed soon or want to help.
Including the city by default
-
Make sure you can run
import.sh
-- see the instructions. You'll need Rust, osmconvert, gdal, etc. -
Use geojson.io or geoman.io to draw a polygon around the region you want to simulate.
-
Create a new directory:
mkdir -p data/input/your_city/polygons
-
Create a polygon filter file in that directory using the coordinates from geojson.io. It's easiest to start with an existing file from another directory; I recommend
data/input/austin/polygons/downtown_atx.poly
as a guide. You can usedata/geojson_to_osmosis.py
to help format the coordinates. -
Create a new module in
importer/src/
for your city, copyingimporter/src/austin.rs
as a guide. Edit that file in the obvious way. The main thing you'll need is a .osm or .osm.pbf file to download that contains your city. The clipping polygon will be applied to that. -
Update
importer/src/main.rs
to reference your new module, followingaustin
as an example. -
Update
map_belongs_to_city
inupdater/src/main.rs
-
Run it:
./import.sh --city=your_city --raw --map
-
Update
.gitignore
, followingaustin
as an example.
Send a PR with your changes! I'll generate everything and make it work with
updater
, so most people don't have to build everything from scratch.
Next steps
OpenStreetMap isn't the only data source we need. If you look at the import pipeline for Seattle, you'll see many more sources for parking, GTFS bus schedules, person/trip demand data for scenarios, etc. Most of these aren't standard between cities. If you want to make your city more realistic, we'll have to import more data. Get in touch.