diff --git a/data/MANIFEST.json b/data/MANIFEST.json index 68b1fafd6e..a20c6cbbd3 100644 --- a/data/MANIFEST.json +++ b/data/MANIFEST.json @@ -820,6 +820,11 @@ "uncompressed_size_bytes": 6090624, "compressed_size_bytes": 1921370 }, + "data/input/gb/sheffield/raw_maps/center.bin": { + "checksum": "3ddd966f2bd246848004b1ab66d73662", + "uncompressed_size_bytes": 7782816, + "compressed_size_bytes": 2092917 + }, "data/input/gb/sheffield/raw_maps/darnall.bin": { "checksum": "9ea507dc78009fc367a1ed8667a7f1ad", "uncompressed_size_bytes": 6155087, @@ -3585,11 +3590,21 @@ "uncompressed_size_bytes": 5135906, "compressed_size_bytes": 1279366 }, + "data/system/gb/sheffield/maps/center.bin": { + "checksum": "6533471368007fc090c6dff9b4d55233", + "uncompressed_size_bytes": 20447830, + "compressed_size_bytes": 7810275 + }, "data/system/gb/sheffield/maps/darnall.bin": { "checksum": "f85f04391ee93d8c79f2429f54ba319c", "uncompressed_size_bytes": 20612736, "compressed_size_bytes": 8054967 }, + "data/system/gb/sheffield/scenarios/center/background.bin": { + "checksum": "4dc8b0c9dc1a279e4c5e64afea1386a1", + "uncompressed_size_bytes": 9802967, + "compressed_size_bytes": 2581277 + }, "data/system/gb/sheffield/scenarios/darnall/background.bin": { "checksum": "73b55e326b3fb61a4ee96538937950f1", "uncompressed_size_bytes": 8279793, diff --git a/importer/config/gb/sheffield/center.geojson b/importer/config/gb/sheffield/center.geojson new file mode 100644 index 0000000000..61df75f7c9 --- /dev/null +++ b/importer/config/gb/sheffield/center.geojson @@ -0,0 +1,40 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [ + -1.4904574337349459, + 53.39097179861591 + ], + [ + -1.5008616882630292, + 53.3639006151611 + ], + [ + -1.4641147467382325, + 53.35445466659732 + ], + [ + -1.44507717462281, + 53.38707724924589 + ], + [ + -1.4749617355020064, + 53.39532799094883 + ], + [ + -1.4904574337349459, + 53.39097179861591 + ] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/map_gui/src/tools/mod.rs b/map_gui/src/tools/mod.rs index 792940c59a..836d0d78ad 100644 --- a/map_gui/src/tools/mod.rs +++ b/map_gui/src/tools/mod.rs @@ -225,6 +225,7 @@ pub fn nice_map_name(name: &MapName) -> &str { ("oxford", "center") => "Oxford", ("poundbury", "center") => "Poundbury", ("priors_hall", "center") => "Priors Hall", + ("sheffield", "center") => "Sheffield", ("sheffield", "darnall") => "Darnall", ("st_albans", "center") => "St Albans", ("taunton_firepool", "center") => "Taunton Firepool",