Import Anchorage

This commit is contained in:
Dustin Carlino 2021-02-14 17:21:02 -08:00
parent 9b1b9f467e
commit e8d1a4bb0d
5 changed files with 51 additions and 0 deletions

1
.gitignore vendored
View File

@ -40,6 +40,7 @@ data/system/gb/newcastle_great_park
data/system/il/tel_aviv
data/system/pl/krakow
data/system/pl/warsaw
data/system/us/anchorage
data/system/us/bellevue
data/system/us/detroit
data/system/us/nyc

View File

@ -740,6 +740,21 @@
"uncompressed_size_bytes": 32102977,
"compressed_size_bytes": 7199756
},
"data/input/us/anchorage/osm/alaska-latest.osm.pbf": {
"checksum": "e27bab279362bc0be399abd141474683",
"uncompressed_size_bytes": 112507133,
"compressed_size_bytes": 112197527
},
"data/input/us/anchorage/osm/downtown.osm": {
"checksum": "8d12a0758324445d32b73b45d94fc38d",
"uncompressed_size_bytes": 60654664,
"compressed_size_bytes": 5074304
},
"data/input/us/anchorage/raw_maps/downtown.bin": {
"checksum": "2ef5417af8e47236f885f7aca8a2055b",
"uncompressed_size_bytes": 17728717,
"compressed_size_bytes": 4092962
},
"data/input/us/bellevue/osm/huge.osm": {
"checksum": "ef54ab4ff049b29f92331e8c1202372a",
"uncompressed_size_bytes": 48442449,
@ -1360,6 +1375,11 @@
"uncompressed_size_bytes": 91892002,
"compressed_size_bytes": 29602482
},
"data/system/us/anchorage/maps/downtown.bin": {
"checksum": "bf54400f7d7c253b84d58133697713c0",
"uncompressed_size_bytes": 64145564,
"compressed_size_bytes": 21978297
},
"data/system/us/bellevue/maps/huge.bin": {
"checksum": "d2688c59275e6339200966e7c8fc31c3",
"uncompressed_size_bytes": 37615784,

View File

@ -0,0 +1,18 @@
{
"osm_url": "https://download.geofabrik.de/north-america/us/alaska-latest.osm.pbf",
"map_config": {
"driving_side": "Right",
"bikes_can_use_bus_lanes": true,
"inferred_sidewalks": true,
"separate_cycleways": false,
"street_parking_spot_length": 8.0
},
"onstreet_parking": "JustOSM",
"public_offstreet_parking": "None",
"private_offstreet_parking": {
"FixedPerBldg": 3
},
"elevation": null,
"include_railroads": true,
"extra_buildings": null
}

View File

@ -0,0 +1,11 @@
boundary
1
-149.92355346679688 61.235557766594155
-150.03204345703125 61.21275048679213
-150.09864807128906 61.152181512241825
-150.0011444091797 61.11306435851652
-149.72442626953125 61.16476825205345
-149.71824645996094 61.23787062512065
-149.92355346679688 61.235557766594155
END
END

View File

@ -118,6 +118,7 @@ pub fn nice_map_name(name: &MapName) -> &str {
_ => &name.map,
},
"us" => match (name.city.city.as_ref(), name.map.as_ref()) {
("anchorage", "downtown") => "Anchorage",
("bellevue", "huge") => "Bellevue",
("detroit", "downtown") => "Detroit",
("nyc", "lower_manhattan") => "Lower Manhattan",