1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use std::path::Path;
use anyhow::Result;
use abstio::CityName;
use geom::LonLat;
pub async fn run(
geojson_path: String,
name: String,
driving_side: map_model::DrivingSide,
use_geofabrik: bool,
filter_crosswalks: bool,
create_uk_travel_demand_model: bool,
) -> Result<()> {
if name.contains(' ') || name.is_empty() {
panic!(
"--map_name must be non-empty and contain no spaces: {}",
name
);
}
{
println!("Converting GeoJSON to Osmosis boundary");
crate::geojson_to_osmosis::run(geojson_path.clone())?;
if Path::new("boundary1.poly").exists() {
abstio::delete_file("boundary0.poly");
abstio::delete_file("boundary1.poly");
anyhow::bail!(
"Your GeoJSON contained multiple polygons. You can only import one at a time."
);
}
}
let city = CityName::new("zz", "oneshot");
let osm;
if !use_geofabrik {
println!("Downloading OSM data from Overpass...");
osm = city.input_path(format!("osm/{}.osm", name));
let geojson = abstio::slurp_file(geojson_path)?;
let mut polygons = LonLat::parse_geojson_polygons(String::from_utf8(geojson)?)?;
let mut filter = "poly:\"".to_string();
for pt in polygons.pop().unwrap().0 {
filter.push_str(&format!("{} {} ", pt.y(), pt.x()));
}
filter.pop();
filter.push('"');
let query = format!(
"(\n nwr({});\n node(w)->.x;\n <;\n);\nout meta;\n",
filter
);
abstio::download_to_file("https://overpass-api.de/api/interpreter", Some(query), &osm)
.await?;
} else {
println!("Figuring out what Geofabrik file contains your boundary");
let url = importer::pick_geofabrik("boundary0.poly".to_string()).await?;
let pbf = city.input_path(format!("osm/{}.pbf", abstutil::basename(&url)));
osm = city.input_path(format!("osm/{}.osm", name));
fs_err::create_dir_all(std::path::Path::new(&osm).parent().unwrap())
.expect("Creating parent dir failed");
if !abstio::file_exists(&pbf) {
println!("Downloading {}", url);
abstio::download_to_file(url, None, &pbf).await?;
}
println!("Clipping osm.pbf file to your boundary");
crate::clip_osm::run(pbf, "boundary0.poly".to_string(), osm.clone())?;
}
println!("Running importer");
importer::oneshot(
osm,
Some("boundary0.poly".to_string()),
driving_side,
filter_crosswalks,
create_uk_travel_demand_model,
map_model::RawToMapOptions::default(),
)
.await;
abstio::delete_file("boundary0.poly");
Ok(())
}