abstreet/convert_osm/Cargo.toml
Dustin Carlino 4235d9f994 When importing maps, optionally add in extra buildings from a GeoJSON
source to augment the ones in OSM. For
https://github.com/cyipt/actdev/issues/53 -- sometimes the buildings
just haven't been mapped in OSM yet, other times the buildings are part
of a future development site. In either case, we can procedurally
generate some houses, so this is a way to include them in the map.

Start doing this for Chapelford. But first, adjust the generated house
sizes -- they were WAY too tiny.

Also prep for [rebuild] [release]
2021-02-07 13:56:26 -08:00

19 lines
438 B
TOML

[package]
name = "convert_osm"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
anyhow = "1.0.38"
byteorder = "1.4.2"
geojson = "0.21.0"
geom = { path = "../geom" }
kml = { path = "../kml" }
log = "0.4.14"
map_model = { path = "../map_model" }
roxmltree = { version = "0.14.0", features=["std"] }
serde = "1.0.123"