From af7922cebf8aa878f0d936935df1a76191f718d4 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Thu, 16 Apr 2020 21:33:48 +0200 Subject: [PATCH 01/55] Add rendering for mountain_pass --- project.mml | 11 ++++++++--- style/amenity-points.mss | 12 +++++++++++- symbols/mountain_pass.svg | 22 ++++++++++++++++++++++ 3 files changed, 41 insertions(+), 4 deletions(-) create mode 100644 symbols/mountain_pass.svg diff --git a/project.mml b/project.mml index 59542680fa..afbf0e956c 100644 --- a/project.mml +++ b/project.mml @@ -1438,7 +1438,8 @@ Layer: WHEN (tags ? 'ele') AND tags->'ele' ~ '^-?\d{1,4}(\.\d+)?$' AND ("natural" IN ('peak', 'volcano', 'saddle') OR tourism = 'alpine_hut' OR (tourism = 'information' AND tags->'information' = 'guidepost') - OR amenity = 'shelter') + OR amenity = 'shelter' + OR tags->'mountain_pass' = 'yes') THEN CONCAT(REPLACE(ROUND((tags->'ele')::NUMERIC)::TEXT, '-', U&'\2212'), U&'\00A0', 'm') END, CASE WHEN (tags ? 'height') AND tags->'height' ~ '^\d{1,3}(\.\d+)?$' @@ -1446,7 +1447,7 @@ Layer: THEN CONCAT(ROUND((tags->'height')::NUMERIC)::TEXT, U&'\00A0', 'm') END ) ) AS name, - tags->'parking' as "parking", + tags->'parking' as "parking", COALESCE( 'aeroway_' || CASE WHEN aeroway IN ('gate', 'apron', 'helipad', 'aerodrome') THEN aeroway END, 'tourism_' || CASE WHEN tourism IN ('alpine_hut', 'apartment', 'artwork', 'camp_site', 'caravan_site', 'chalet', 'gallery', 'guest_house', @@ -1483,6 +1484,8 @@ Layer: 'natural_' || CASE WHEN "natural" IN ('wood', 'water', 'mud', 'wetland', 'bay', 'spring', 'scree', 'shingle', 'bare_rock', 'sand', 'heath', 'grassland', 'scrub', 'beach', 'glacier', 'tree', 'strait', 'cape') THEN "natural" END, + -- mountain_pass come after the natural=saddle, to give priority to nodes being both a mountain_pass and a saddle + 'mountain_pass' || CASE WHEN tags->'mountain_pass' IN ('yes') THEN '' END, 'waterway_' || CASE WHEN "waterway" IN ('waterfall') AND way_area IS NULL THEN waterway END, 'place_' || CASE WHEN place IN ('island', 'islet') THEN place END, 'historic_' || CASE WHEN historic IN ('memorial', 'monument', 'archaeological_site', 'fort', 'castle', 'manor', 'city_gate') @@ -1509,7 +1512,8 @@ Layer: ) AS feature, access, CASE - WHEN "natural" IN ('peak', 'volcano', 'saddle') THEN + WHEN "natural" IN ('peak', 'volcano', 'saddle') + OR tags->'mountain_pass' = 'yes' THEN CASE WHEN tags->'ele' ~ '^-?\d{1,4}(\.\d+)?$' THEN (tags->'ele')::NUMERIC END @@ -1561,6 +1565,7 @@ Layer: ELSE 'other' END AS shop, CASE WHEN building = 'no' OR building IS NULL THEN 'no' ELSE 'yes' END AS is_building, tags->'operator' AS operator, + tags->'mountain_pass' AS mountain_pass, ref, way_area, COALESCE(way_area/NULLIF(POW(!scale_denominator!*0.001*0.28,2),0), 0) AS way_pixels diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 1f7d579939..fcd822ff4c 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1371,11 +1371,18 @@ marker-clip: false; } - [feature = 'natural_saddle'][zoom >= 15] { + [feature = 'natural_saddle'][zoom >= 15], + [feature = 'natural_saddle'][mountain_pass = 'yes'][zoom >= 14] { marker-file: url('symbols/natural/saddle.svg'); marker-fill: @landform-color; marker-clip: false; } + + [feature = 'mountain_pass'][zoom >= 15] { + marker-file: url('symbols/mountain_pass.svg'); + marker-line-color: @transportation-icon; + marker-clip: false; + } [feature = 'natural_spring'][zoom >= 14] { marker-file: url('symbols/spring.svg'); @@ -1817,6 +1824,8 @@ [feature = 'natural_peak'][zoom >= 13], [feature = 'natural_volcano'][zoom >= 13], [feature = 'natural_saddle'][zoom >= 15], + [feature = 'natural_saddle'][mountain_pass = 'yes'][zoom >= 14], + [feature = 'mountain_pass'][zoom >= 15], [feature = 'tourism_viewpoint'][zoom >= 16] { text-name: "[name]"; text-size: @standard-font-size; @@ -1824,6 +1833,7 @@ text-line-spacing: @standard-line-spacing-size; text-fill: darken(@landform-color, 30%); [feature = 'natural_volcano'] { text-fill: #d40000; } + [feature = 'mountain_pass'] { text-fill: @transportation-text; } text-dy: 7; [feature = 'tourism_viewpoint'] { text-dy: 11; } text-face-name: @standard-font; diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg new file mode 100644 index 0000000000..b1e0849df2 --- /dev/null +++ b/symbols/mountain_pass.svg @@ -0,0 +1,22 @@ + + + + + + + From eaf1911bc73a60b77f64d549189c8da780fa73e7 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Thu, 16 Apr 2020 22:11:25 +0200 Subject: [PATCH 02/55] Fix SVG and rendering --- style/amenity-points.mss | 1 + symbols/mountain_pass.svg | 125 ++++++++++++++++++++++++++++++++------ 2 files changed, 106 insertions(+), 20 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index fcd822ff4c..83310f4e5c 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1380,6 +1380,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/mountain_pass.svg'); + marker-fill: none; marker-line-color: @transportation-icon; marker-clip: false; } diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index b1e0849df2..be70605a7a 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,22 +1,107 @@ - - - - - + + + + + + + + + image/svg+xml + + + + STyx + + + + Mountain pass + none + + + mountain pass + map symbol + pictogramme + x4 + + + 8x8 black mountain pass symbol + + + Inkscape + + + 08-10-28 + + + + + + + + + + + + + + From 40f0218931790f2bf7f26cfc85c11212ae08ec43 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Fri, 17 Apr 2020 20:29:57 +0200 Subject: [PATCH 03/55] Minify SVG --- symbols/mountain_pass.svg | 112 ++------------------------------------ 1 file changed, 6 insertions(+), 106 deletions(-) diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index be70605a7a..38144de55f 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,107 +1,7 @@ - - - - - - - - - - image/svg+xml - - - - STyx - - - - Mountain pass - none - - - mountain pass - map symbol - pictogramme - x4 - - - 8x8 black mountain pass symbol - - - Inkscape - - - 08-10-28 - - - - - - - - - - - - - - + + + + + + From 0f2171b9dd9d000c9109b401cc5ea3669de4c2c8 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Fri, 17 Apr 2020 21:21:52 +0200 Subject: [PATCH 04/55] Comments --- project.mml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/project.mml b/project.mml index afbf0e956c..d4cc7db5c2 100644 --- a/project.mml +++ b/project.mml @@ -1447,7 +1447,7 @@ Layer: THEN CONCAT(ROUND((tags->'height')::NUMERIC)::TEXT, U&'\00A0', 'm') END ) ) AS name, - tags->'parking' as "parking", + tags->'parking' as "parking", COALESCE( 'aeroway_' || CASE WHEN aeroway IN ('gate', 'apron', 'helipad', 'aerodrome') THEN aeroway END, 'tourism_' || CASE WHEN tourism IN ('alpine_hut', 'apartment', 'artwork', 'camp_site', 'caravan_site', 'chalet', 'gallery', 'guest_house', @@ -1484,8 +1484,7 @@ Layer: 'natural_' || CASE WHEN "natural" IN ('wood', 'water', 'mud', 'wetland', 'bay', 'spring', 'scree', 'shingle', 'bare_rock', 'sand', 'heath', 'grassland', 'scrub', 'beach', 'glacier', 'tree', 'strait', 'cape') THEN "natural" END, - -- mountain_pass come after the natural=saddle, to give priority to nodes being both a mountain_pass and a saddle - 'mountain_pass' || CASE WHEN tags->'mountain_pass' IN ('yes') THEN '' END, + 'mountain_pass' || CASE WHEN tags->'mountain_pass' IN ('yes') THEN '' END, -- after natural=saddle to give priority to that tag on the same node 'waterway_' || CASE WHEN "waterway" IN ('waterfall') AND way_area IS NULL THEN waterway END, 'place_' || CASE WHEN place IN ('island', 'islet') THEN place END, 'historic_' || CASE WHEN historic IN ('memorial', 'monument', 'archaeological_site', 'fort', 'castle', 'manor', 'city_gate') From 12faabf46f9a053d5f7f92bb01aecf71bedf78ca Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 18 Apr 2020 10:29:32 +0200 Subject: [PATCH 05/55] Darker text --- style/amenity-points.mss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 83310f4e5c..8a8db42de0 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -23,6 +23,8 @@ @protected-area: #008000; @aboriginal: #82643a; @religious-icon: #000000; +@mountain-pass-icon: #545454; +@mountain-pass-text: darken(@mountain-pass-icon, 30%); @landcover-font-size: 10; @landcover-wrap-width-size: 30; // 3 em @@ -1381,7 +1383,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/mountain_pass.svg'); marker-fill: none; - marker-line-color: @transportation-icon; + marker-line-color: @mountain-pass-icon; marker-clip: false; } @@ -1834,7 +1836,7 @@ text-line-spacing: @standard-line-spacing-size; text-fill: darken(@landform-color, 30%); [feature = 'natural_volcano'] { text-fill: #d40000; } - [feature = 'mountain_pass'] { text-fill: @transportation-text; } + [feature = 'mountain_pass'] { text-fill: @mountain-pass-text; } text-dy: 7; [feature = 'tourism_viewpoint'] { text-dy: 11; } text-face-name: @standard-font; From ee9edada67a1f794b399d5c8c1087ecb640e10d8 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 25 Apr 2020 17:34:26 +0200 Subject: [PATCH 06/55] Update icon --- style/amenity-points.mss | 3 +-- symbols/mountain_pass.svg | 9 ++++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 8a8db42de0..4c1325cb9f 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1382,8 +1382,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/mountain_pass.svg'); - marker-fill: none; - marker-line-color: @mountain-pass-icon; + marker-fill: @mountain-pass-icon; marker-clip: false; } diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index 38144de55f..08179bd3be 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,7 +1,6 @@ - - - - - + + + + From 23a9d54608e41e6144d9fc66893690383dd8e40b Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 25 Apr 2020 17:41:53 +0200 Subject: [PATCH 07/55] Fix condensed size --- symbols/mountain_pass.svg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index 08179bd3be..f233feed2c 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,6 +1,6 @@ - - - + + + From 33c5ec2450f76029a0b5ac7f8d49b581b04cbc10 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 2 May 2020 16:53:41 +0200 Subject: [PATCH 08/55] ) ( style icon --- symbols/mountain_pass.svg | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index f233feed2c..64663fc5e2 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,6 +1,28 @@ - - - + + + + + + + + From c246289480a13303f3b21fb12f45e592fd492136 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 2 May 2020 17:05:28 +0200 Subject: [PATCH 09/55] Pointy end! --- symbols/mountain_pass.svg | 31 +++++-------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index 64663fc5e2..1b075f094e 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,28 +1,7 @@ - + - - - - - - + + + - - + \ No newline at end of file From 798db3d81ab4ee3e3f0767ce76316a4ca103114d Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 2 May 2020 17:13:39 +0200 Subject: [PATCH 10/55] Improved size and color --- style/amenity-points.mss | 7 +++---- symbols/mountain_pass.svg | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 4c1325cb9f..44d6294574 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -23,8 +23,7 @@ @protected-area: #008000; @aboriginal: #82643a; @religious-icon: #000000; -@mountain-pass-icon: #545454; -@mountain-pass-text: darken(@mountain-pass-icon, 30%); +@mountain-pass: #333; @landcover-font-size: 10; @landcover-wrap-width-size: 30; // 3 em @@ -1382,7 +1381,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/mountain_pass.svg'); - marker-fill: @mountain-pass-icon; + marker-fill: @mountain-pass; marker-clip: false; } @@ -1835,7 +1834,7 @@ text-line-spacing: @standard-line-spacing-size; text-fill: darken(@landform-color, 30%); [feature = 'natural_volcano'] { text-fill: #d40000; } - [feature = 'mountain_pass'] { text-fill: @mountain-pass-text; } + [feature = 'mountain_pass'] { text-fill: @mountain-pass; } text-dy: 7; [feature = 'tourism_viewpoint'] { text-dy: 11; } text-face-name: @standard-font; diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index 1b075f094e..0d5a2e7f9c 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,7 +1,7 @@ - - + + \ No newline at end of file From 977ffec677adf9db441e8112a84d5367b45f8d54 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 16 May 2020 18:56:28 +0200 Subject: [PATCH 11/55] No more mountain_pass zoom change for saddles --- project.mml | 1 - style/amenity-points.mss | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/project.mml b/project.mml index d4cc7db5c2..fa4cd8ba26 100644 --- a/project.mml +++ b/project.mml @@ -1564,7 +1564,6 @@ Layer: ELSE 'other' END AS shop, CASE WHEN building = 'no' OR building IS NULL THEN 'no' ELSE 'yes' END AS is_building, tags->'operator' AS operator, - tags->'mountain_pass' AS mountain_pass, ref, way_area, COALESCE(way_area/NULLIF(POW(!scale_denominator!*0.001*0.28,2),0), 0) AS way_pixels diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 44d6294574..951bc09144 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1372,8 +1372,7 @@ marker-clip: false; } - [feature = 'natural_saddle'][zoom >= 15], - [feature = 'natural_saddle'][mountain_pass = 'yes'][zoom >= 14] { + [feature = 'natural_saddle'][zoom >= 15] { marker-file: url('symbols/natural/saddle.svg'); marker-fill: @landform-color; marker-clip: false; @@ -1825,7 +1824,6 @@ [feature = 'natural_peak'][zoom >= 13], [feature = 'natural_volcano'][zoom >= 13], [feature = 'natural_saddle'][zoom >= 15], - [feature = 'natural_saddle'][mountain_pass = 'yes'][zoom >= 14], [feature = 'mountain_pass'][zoom >= 15], [feature = 'tourism_viewpoint'][zoom >= 16] { text-name: "[name]"; From c36242f3e19df30697eef6fab21ce77d0d5539b2 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Tue, 8 Sep 2020 21:07:18 +0200 Subject: [PATCH 12/55] Update icon and color --- style/amenity-points.mss | 4 ++-- symbols/mountain_pass.svg | 40 ++++++++++++++++++++++++++++++++------- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index c87a9227bf..e9a47e9a5d 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -23,7 +23,7 @@ @protected-area: #008000; @aboriginal: #82643a; @religious-icon: #000000; -@mountain-pass: #333; +@mountain-pass: @transportation-icon; @landcover-font-size: 10; @landcover-wrap-width-size: 30; // 3 em @@ -1847,7 +1847,7 @@ text-line-spacing: @standard-line-spacing-size; text-fill: darken(@landform-color, 30%); [feature = 'natural_volcano'] { text-fill: #d40000; } - [feature = 'mountain_pass'] { text-fill: @mountain-pass; } + [feature = 'mountain_pass'] { text-fill: darken(@mountain-pass, 30%); } text-dy: 7; [feature = 'tourism_viewpoint'] { text-dy: 11; } text-face-name: @standard-font; diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg index 0d5a2e7f9c..24a127a005 100644 --- a/symbols/mountain_pass.svg +++ b/symbols/mountain_pass.svg @@ -1,7 +1,33 @@ - - - - - - - \ No newline at end of file + + + + + + + + From e3df1b4093c4cb19efc5490fb8202896e5e6726e Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Wed, 23 Dec 2020 15:02:02 +0100 Subject: [PATCH 13/55] Use existing saddle icon --- style/amenity-points.mss | 4 ++-- symbols/mountain_pass.svg | 33 --------------------------------- 2 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 symbols/mountain_pass.svg diff --git a/style/amenity-points.mss b/style/amenity-points.mss index e9a47e9a5d..2358decd8e 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1383,9 +1383,9 @@ marker-fill: @landform-color; marker-clip: false; } - + [feature = 'mountain_pass'][zoom >= 15] { - marker-file: url('symbols/mountain_pass.svg'); + marker-file: url('symbols/natural/saddle.svg'); marker-fill: @mountain-pass; marker-clip: false; } diff --git a/symbols/mountain_pass.svg b/symbols/mountain_pass.svg deleted file mode 100644 index 24a127a005..0000000000 --- a/symbols/mountain_pass.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - From 52631f0dc8c738fff1860499ec50098e0cd6f81a Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Wed, 27 Jan 2021 18:42:58 +0100 Subject: [PATCH 14/55] Update style according to comments --- style/amenity-points.mss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 918d7e96c2..201cd75f8a 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -23,7 +23,6 @@ @protected-area: #008000; @aboriginal: #82643a; @religious-icon: #000000; -@mountain-pass: @transportation-icon; @landcover-font-size: 10; @landcover-wrap-width-size: 30; // 3 em @@ -1386,7 +1385,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/natural/saddle.svg'); - marker-fill: @mountain-pass; + marker-fill: @transportation-text; marker-clip: false; } @@ -1842,7 +1841,7 @@ text-line-spacing: @standard-line-spacing-size; text-fill: darken(@landform-color, 30%); [feature = 'natural_volcano'] { text-fill: #d40000; } - [feature = 'mountain_pass'] { text-fill: darken(@mountain-pass, 30%); } + [feature = 'mountain_pass'] { text-fill: @transportation-text; } text-dy: 7; [feature = 'tourism_viewpoint'] { text-dy: 11; } text-face-name: @standard-font; From 9aba82812d5e27e686f103b1229f7de232ada30d Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Thu, 28 Jan 2021 19:08:09 +0100 Subject: [PATCH 15/55] Update amenity-points.mss --- style/amenity-points.mss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 201cd75f8a..bdaec29116 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1385,7 +1385,7 @@ [feature = 'mountain_pass'][zoom >= 15] { marker-file: url('symbols/natural/saddle.svg'); - marker-fill: @transportation-text; + marker-fill: @transportation-icon; marker-clip: false; } From 089e8f8171794023f2b37256811dabc333d97481 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 13:46:02 +0200 Subject: [PATCH 16/55] Clean amenity symbols --- symbols/amenity/arts_centre.svg | 43 +-------- symbols/amenity/atm.svg | 39 +------- symbols/amenity/bank.svg | 22 +---- symbols/amenity/bar.svg | 22 +---- symbols/amenity/bbq.svg | 33 +------ symbols/amenity/bench.svg | 41 +-------- symbols/amenity/bicycle_parking.svg | 41 +-------- symbols/amenity/bicycle_repair_station.svg | 41 +-------- symbols/amenity/biergarten.svg | 22 +---- symbols/amenity/boat_rental.svg | 52 +---------- symbols/amenity/bureau_de_change.svg | 2 +- symbols/amenity/bus_station.svg | 92 +------------------ symbols/amenity/cafe.svg | 22 +---- symbols/amenity/car_wash.svg | 40 +------- symbols/amenity/casino.svg | 15 +-- symbols/amenity/charging_station.svg | 40 +------- symbols/amenity/cinema.svg | 39 +------- symbols/amenity/community_centre.svg | 40 +------- symbols/amenity/courthouse.svg | 41 +-------- symbols/amenity/dentist.svg | 22 +---- symbols/amenity/doctors.svg | 22 +---- symbols/amenity/drinking_water.svg | 22 +---- symbols/amenity/emergency_phone.svg | 16 +--- symbols/amenity/excrement_bags.svg | 33 +------ symbols/amenity/fast_food.svg | 22 +---- symbols/amenity/ferry.svg | 45 +-------- symbols/amenity/firestation.svg | 22 +---- symbols/amenity/fountain.svg | 40 +------- symbols/amenity/fuel.svg | 22 +---- symbols/amenity/hospital.svg | 6 +- symbols/amenity/hunting_stand.svg | 41 +-------- symbols/amenity/ice_cream.svg | 42 +-------- symbols/amenity/internet_cafe.svg | 41 +-------- symbols/amenity/library.svg | 39 +------- symbols/amenity/motorcycle_parking.svg | 40 +------- symbols/amenity/nightclub.svg | 42 +-------- symbols/amenity/parking.svg | 20 +--- .../amenity/parking_entrance_multistorey.svg | 14 +-- .../amenity/parking_entrance_underground.svg | 14 +-- symbols/amenity/parking_subtle.svg | 4 +- symbols/amenity/parking_tickets.svg | 40 +------- symbols/amenity/pharmacy.svg | 22 +---- symbols/amenity/place_of_worship.svg | 22 +---- symbols/amenity/police.svg | 22 +---- symbols/amenity/post_box.svg | 39 +------- symbols/amenity/post_office.svg | 42 +-------- symbols/amenity/prison.svg | 22 +---- symbols/amenity/pub.svg | 23 +---- symbols/amenity/public_bath.svg | 39 +------- symbols/amenity/public_bookcase.svg | 33 +------ symbols/amenity/public_transport_tickets.svg | 4 +- symbols/amenity/recycling.svg | 22 +---- symbols/amenity/rental_bicycle.svg | 22 +---- symbols/amenity/rental_car.svg | 22 +---- symbols/amenity/restaurant.svg | 32 +------ symbols/amenity/shelter.svg | 40 +------- symbols/amenity/shower.svg | 37 +++----- symbols/amenity/social_facility.svg | 40 +------- symbols/amenity/taxi.svg | 16 +--- symbols/amenity/telephone.svg | 16 +--- symbols/amenity/theatre.svg | 41 +-------- symbols/amenity/toilets.svg | 22 +---- symbols/amenity/town_hall.svg | 22 +---- symbols/amenity/vehicle_inspection.svg | 32 +------ symbols/amenity/veterinary.svg | 42 +-------- symbols/amenity/waste_basket.svg | 42 +-------- symbols/amenity/waste_disposal.svg | 33 +------ 67 files changed, 202 insertions(+), 1843 deletions(-) diff --git a/symbols/amenity/arts_centre.svg b/symbols/amenity/arts_centre.svg index 2058f54a23..45fff14bfe 100644 --- a/symbols/amenity/arts_centre.svg +++ b/symbols/amenity/arts_centre.svg @@ -1,41 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + diff --git a/symbols/amenity/atm.svg b/symbols/amenity/atm.svg index eda8372cee..54113a2002 100644 --- a/symbols/amenity/atm.svg +++ b/symbols/amenity/atm.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/bank.svg b/symbols/amenity/bank.svg index 0782323406..56e05621d2 100644 --- a/symbols/amenity/bank.svg +++ b/symbols/amenity/bank.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/bar.svg b/symbols/amenity/bar.svg index a3e42fc877..4e13f8e0ed 100644 --- a/symbols/amenity/bar.svg +++ b/symbols/amenity/bar.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/bbq.svg b/symbols/amenity/bbq.svg index 68deda03cf..5401f84374 100644 --- a/symbols/amenity/bbq.svg +++ b/symbols/amenity/bbq.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/bench.svg b/symbols/amenity/bench.svg index 1fea29ee7d..8e67d15d9f 100644 --- a/symbols/amenity/bench.svg +++ b/symbols/amenity/bench.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/bicycle_parking.svg b/symbols/amenity/bicycle_parking.svg index 441187a417..f1c6baab18 100644 --- a/symbols/amenity/bicycle_parking.svg +++ b/symbols/amenity/bicycle_parking.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/bicycle_repair_station.svg b/symbols/amenity/bicycle_repair_station.svg index d90beae963..0feb87e5d3 100644 --- a/symbols/amenity/bicycle_repair_station.svg +++ b/symbols/amenity/bicycle_repair_station.svg @@ -1,39 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/amenity/biergarten.svg b/symbols/amenity/biergarten.svg index 1a1f4fa830..39168a3cf0 100644 --- a/symbols/amenity/biergarten.svg +++ b/symbols/amenity/biergarten.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/boat_rental.svg b/symbols/amenity/boat_rental.svg index c9f3eabbc7..65a6983e5d 100644 --- a/symbols/amenity/boat_rental.svg +++ b/symbols/amenity/boat_rental.svg @@ -1,50 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - Layer 1 - - - - + + + diff --git a/symbols/amenity/bureau_de_change.svg b/symbols/amenity/bureau_de_change.svg index 2387a60951..a789f45bba 100644 --- a/symbols/amenity/bureau_de_change.svg +++ b/symbols/amenity/bureau_de_change.svg @@ -1,5 +1,5 @@ - + diff --git a/symbols/amenity/bus_station.svg b/symbols/amenity/bus_station.svg index ae19392094..18201dcd3a 100644 --- a/symbols/amenity/bus_station.svg +++ b/symbols/amenity/bus_station.svg @@ -1,89 +1,5 @@ - - - - - - image/svg+xml - - - en - - - - - - - - - - - - - - - - - - - - - - - - + + + + diff --git a/symbols/amenity/cafe.svg b/symbols/amenity/cafe.svg index 4beaabfab0..4c94a34eaa 100644 --- a/symbols/amenity/cafe.svg +++ b/symbols/amenity/cafe.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/car_wash.svg b/symbols/amenity/car_wash.svg index 96ce720d09..400d9117b3 100644 --- a/symbols/amenity/car_wash.svg +++ b/symbols/amenity/car_wash.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/casino.svg b/symbols/amenity/casino.svg index 21447399b4..5403477fb0 100644 --- a/symbols/amenity/casino.svg +++ b/symbols/amenity/casino.svg @@ -1,15 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + diff --git a/symbols/amenity/charging_station.svg b/symbols/amenity/charging_station.svg index e30856f7a6..ca3231db2a 100644 --- a/symbols/amenity/charging_station.svg +++ b/symbols/amenity/charging_station.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/cinema.svg b/symbols/amenity/cinema.svg index 2915a007f6..898b5889cc 100644 --- a/symbols/amenity/cinema.svg +++ b/symbols/amenity/cinema.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/community_centre.svg b/symbols/amenity/community_centre.svg index 62094f3f85..946ccbd377 100644 --- a/symbols/amenity/community_centre.svg +++ b/symbols/amenity/community_centre.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/courthouse.svg b/symbols/amenity/courthouse.svg index 182b2b0964..5b2d886bca 100644 --- a/symbols/amenity/courthouse.svg +++ b/symbols/amenity/courthouse.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/dentist.svg b/symbols/amenity/dentist.svg index 43cfc3bc50..b6566ecef2 100644 --- a/symbols/amenity/dentist.svg +++ b/symbols/amenity/dentist.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/doctors.svg b/symbols/amenity/doctors.svg index f428f4eba1..d896947a9b 100644 --- a/symbols/amenity/doctors.svg +++ b/symbols/amenity/doctors.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/drinking_water.svg b/symbols/amenity/drinking_water.svg index 702ce54e28..55a84affe2 100644 --- a/symbols/amenity/drinking_water.svg +++ b/symbols/amenity/drinking_water.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/emergency_phone.svg b/symbols/amenity/emergency_phone.svg index 5e916df878..35e3c737ca 100644 --- a/symbols/amenity/emergency_phone.svg +++ b/symbols/amenity/emergency_phone.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/excrement_bags.svg b/symbols/amenity/excrement_bags.svg index 0074115bcf..eb75e2c6d1 100644 --- a/symbols/amenity/excrement_bags.svg +++ b/symbols/amenity/excrement_bags.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/fast_food.svg b/symbols/amenity/fast_food.svg index 46d4ed61ce..ae4e831fbe 100644 --- a/symbols/amenity/fast_food.svg +++ b/symbols/amenity/fast_food.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/ferry.svg b/symbols/amenity/ferry.svg index feba820df3..4e422cb0b4 100644 --- a/symbols/amenity/ferry.svg +++ b/symbols/amenity/ferry.svg @@ -1,43 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/amenity/firestation.svg b/symbols/amenity/firestation.svg index 68d6ac96f8..62cb55d179 100644 --- a/symbols/amenity/firestation.svg +++ b/symbols/amenity/firestation.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/fountain.svg b/symbols/amenity/fountain.svg index 79f7595543..6da4e30d5f 100644 --- a/symbols/amenity/fountain.svg +++ b/symbols/amenity/fountain.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/fuel.svg b/symbols/amenity/fuel.svg index b6125ec027..55db6d3634 100644 --- a/symbols/amenity/fuel.svg +++ b/symbols/amenity/fuel.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/hospital.svg b/symbols/amenity/hospital.svg index 5e9d2ab74d..5bad2398be 100644 --- a/symbols/amenity/hospital.svg +++ b/symbols/amenity/hospital.svg @@ -1,6 +1,4 @@ - - - - + + diff --git a/symbols/amenity/hunting_stand.svg b/symbols/amenity/hunting_stand.svg index a5add915c5..47fea9389f 100644 --- a/symbols/amenity/hunting_stand.svg +++ b/symbols/amenity/hunting_stand.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/ice_cream.svg b/symbols/amenity/ice_cream.svg index c2bb7140c5..31f05c23a8 100644 --- a/symbols/amenity/ice_cream.svg +++ b/symbols/amenity/ice_cream.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/internet_cafe.svg b/symbols/amenity/internet_cafe.svg index e21693c475..527c71a0aa 100644 --- a/symbols/amenity/internet_cafe.svg +++ b/symbols/amenity/internet_cafe.svg @@ -1,39 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/amenity/library.svg b/symbols/amenity/library.svg index ad521d9715..df14d3e182 100644 --- a/symbols/amenity/library.svg +++ b/symbols/amenity/library.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/motorcycle_parking.svg b/symbols/amenity/motorcycle_parking.svg index 2e2b7c4bcf..5f41e62a8b 100644 --- a/symbols/amenity/motorcycle_parking.svg +++ b/symbols/amenity/motorcycle_parking.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/nightclub.svg b/symbols/amenity/nightclub.svg index aaf9a92b23..97f57a81e9 100644 --- a/symbols/amenity/nightclub.svg +++ b/symbols/amenity/nightclub.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/parking.svg b/symbols/amenity/parking.svg index bd86006ee6..88fb9201be 100644 --- a/symbols/amenity/parking.svg +++ b/symbols/amenity/parking.svg @@ -1,18 +1,4 @@ - - - - + + + diff --git a/symbols/amenity/parking_entrance_multistorey.svg b/symbols/amenity/parking_entrance_multistorey.svg index 3a4ac82a54..6be3aff279 100644 --- a/symbols/amenity/parking_entrance_multistorey.svg +++ b/symbols/amenity/parking_entrance_multistorey.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - + + diff --git a/symbols/amenity/parking_entrance_underground.svg b/symbols/amenity/parking_entrance_underground.svg index ad26720147..219f62245c 100644 --- a/symbols/amenity/parking_entrance_underground.svg +++ b/symbols/amenity/parking_entrance_underground.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - + + diff --git a/symbols/amenity/parking_subtle.svg b/symbols/amenity/parking_subtle.svg index 74e4b76180..0c76a35a8b 100644 --- a/symbols/amenity/parking_subtle.svg +++ b/symbols/amenity/parking_subtle.svg @@ -1,4 +1,4 @@ - - + + diff --git a/symbols/amenity/parking_tickets.svg b/symbols/amenity/parking_tickets.svg index c1c9e116fb..3cd43db855 100644 --- a/symbols/amenity/parking_tickets.svg +++ b/symbols/amenity/parking_tickets.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/pharmacy.svg b/symbols/amenity/pharmacy.svg index 9be796999d..ff429eef24 100644 --- a/symbols/amenity/pharmacy.svg +++ b/symbols/amenity/pharmacy.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/place_of_worship.svg b/symbols/amenity/place_of_worship.svg index 69fb57f145..21982b8520 100644 --- a/symbols/amenity/place_of_worship.svg +++ b/symbols/amenity/place_of_worship.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/police.svg b/symbols/amenity/police.svg index b4adfd17b3..ab76ef1437 100644 --- a/symbols/amenity/police.svg +++ b/symbols/amenity/police.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/post_box.svg b/symbols/amenity/post_box.svg index 43956cb96b..d7c288e8d3 100644 --- a/symbols/amenity/post_box.svg +++ b/symbols/amenity/post_box.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/post_office.svg b/symbols/amenity/post_office.svg index 6823bc7b38..792f1dd167 100644 --- a/symbols/amenity/post_office.svg +++ b/symbols/amenity/post_office.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/prison.svg b/symbols/amenity/prison.svg index b3eda17081..65e7fdea19 100644 --- a/symbols/amenity/prison.svg +++ b/symbols/amenity/prison.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/pub.svg b/symbols/amenity/pub.svg index 477cd14b3a..3804605dae 100644 --- a/symbols/amenity/pub.svg +++ b/symbols/amenity/pub.svg @@ -1,21 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/public_bath.svg b/symbols/amenity/public_bath.svg index cf9af1bccf..84fabd345c 100644 --- a/symbols/amenity/public_bath.svg +++ b/symbols/amenity/public_bath.svg @@ -1,37 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/public_bookcase.svg b/symbols/amenity/public_bookcase.svg index 71c8c92b46..db5905632b 100644 --- a/symbols/amenity/public_bookcase.svg +++ b/symbols/amenity/public_bookcase.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/public_transport_tickets.svg b/symbols/amenity/public_transport_tickets.svg index be016e6f0b..15e935ea05 100644 --- a/symbols/amenity/public_transport_tickets.svg +++ b/symbols/amenity/public_transport_tickets.svg @@ -1,4 +1,4 @@ - - + + diff --git a/symbols/amenity/recycling.svg b/symbols/amenity/recycling.svg index 5942a144fb..2923dc20bf 100644 --- a/symbols/amenity/recycling.svg +++ b/symbols/amenity/recycling.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/rental_bicycle.svg b/symbols/amenity/rental_bicycle.svg index a0b6218c3f..1859db062c 100644 --- a/symbols/amenity/rental_bicycle.svg +++ b/symbols/amenity/rental_bicycle.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/rental_car.svg b/symbols/amenity/rental_car.svg index 8462ea5666..8573509104 100644 --- a/symbols/amenity/rental_car.svg +++ b/symbols/amenity/rental_car.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/restaurant.svg b/symbols/amenity/restaurant.svg index 728d22e1c5..38b25a420f 100644 --- a/symbols/amenity/restaurant.svg +++ b/symbols/amenity/restaurant.svg @@ -1,30 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/shelter.svg b/symbols/amenity/shelter.svg index 0f5e44614f..ec729eb4fe 100644 --- a/symbols/amenity/shelter.svg +++ b/symbols/amenity/shelter.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/shower.svg b/symbols/amenity/shower.svg index 6b651a3bc7..dec849abc5 100644 --- a/symbols/amenity/shower.svg +++ b/symbols/amenity/shower.svg @@ -1,28 +1,13 @@ - - - - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/symbols/amenity/social_facility.svg b/symbols/amenity/social_facility.svg index 4a70c72b6e..e2793fae6f 100644 --- a/symbols/amenity/social_facility.svg +++ b/symbols/amenity/social_facility.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/taxi.svg b/symbols/amenity/taxi.svg index 669b15f882..69f3a86435 100644 --- a/symbols/amenity/taxi.svg +++ b/symbols/amenity/taxi.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/telephone.svg b/symbols/amenity/telephone.svg index e04dec5921..1977c6b287 100644 --- a/symbols/amenity/telephone.svg +++ b/symbols/amenity/telephone.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/theatre.svg b/symbols/amenity/theatre.svg index 002561932c..6b7f5d9b0b 100644 --- a/symbols/amenity/theatre.svg +++ b/symbols/amenity/theatre.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/toilets.svg b/symbols/amenity/toilets.svg index fa869ac48b..b5a4fbe2f4 100644 --- a/symbols/amenity/toilets.svg +++ b/symbols/amenity/toilets.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/town_hall.svg b/symbols/amenity/town_hall.svg index 19b3a2c01c..da4c942e59 100644 --- a/symbols/amenity/town_hall.svg +++ b/symbols/amenity/town_hall.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/amenity/vehicle_inspection.svg b/symbols/amenity/vehicle_inspection.svg index 04db3853d4..78fe6935a4 100644 --- a/symbols/amenity/vehicle_inspection.svg +++ b/symbols/amenity/vehicle_inspection.svg @@ -1,30 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/amenity/veterinary.svg b/symbols/amenity/veterinary.svg index 692a111e17..4ab912db99 100644 --- a/symbols/amenity/veterinary.svg +++ b/symbols/amenity/veterinary.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/waste_basket.svg b/symbols/amenity/waste_basket.svg index ebdfeda7ac..b7022711b7 100644 --- a/symbols/amenity/waste_basket.svg +++ b/symbols/amenity/waste_basket.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/amenity/waste_disposal.svg b/symbols/amenity/waste_disposal.svg index db755349c1..ae65eb0ec9 100644 --- a/symbols/amenity/waste_disposal.svg +++ b/symbols/amenity/waste_disposal.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + From 9a0956b0a4e66181237886c87b11f81d931c082f Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 20:44:20 +0200 Subject: [PATCH 17/55] Clean barrier symbols --- symbols/barrier/cattle_grid.svg | 68 ++--------------------- symbols/barrier/cycle_barrier.svg | 41 ++------------ symbols/barrier/full-height_turnstile.svg | 33 +---------- symbols/barrier/gate.svg | 13 +---- symbols/barrier/kissing_gate.svg | 33 +---------- symbols/barrier/lift_gate.svg | 10 +--- symbols/barrier/motorcycle_barrier.svg | 33 +---------- symbols/barrier/stile.svg | 38 +------------ symbols/barrier/toll_booth.svg | 35 ++---------- 9 files changed, 32 insertions(+), 272 deletions(-) diff --git a/symbols/barrier/cattle_grid.svg b/symbols/barrier/cattle_grid.svg index 869fb8d2f4..e2364727d7 100644 --- a/symbols/barrier/cattle_grid.svg +++ b/symbols/barrier/cattle_grid.svg @@ -1,63 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + diff --git a/symbols/barrier/cycle_barrier.svg b/symbols/barrier/cycle_barrier.svg index 0002600db6..1c9e933cd2 100644 --- a/symbols/barrier/cycle_barrier.svg +++ b/symbols/barrier/cycle_barrier.svg @@ -1,38 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - + + + + diff --git a/symbols/barrier/full-height_turnstile.svg b/symbols/barrier/full-height_turnstile.svg index 54b239a462..fee19bddce 100644 --- a/symbols/barrier/full-height_turnstile.svg +++ b/symbols/barrier/full-height_turnstile.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/barrier/gate.svg b/symbols/barrier/gate.svg index ff6818bb39..b50b40fe58 100644 --- a/symbols/barrier/gate.svg +++ b/symbols/barrier/gate.svg @@ -1,11 +1,4 @@ - - - - - - - + + + diff --git a/symbols/barrier/kissing_gate.svg b/symbols/barrier/kissing_gate.svg index c605fe9a4f..db84d714d9 100644 --- a/symbols/barrier/kissing_gate.svg +++ b/symbols/barrier/kissing_gate.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/barrier/lift_gate.svg b/symbols/barrier/lift_gate.svg index f95b34952d..19ea87376d 100644 --- a/symbols/barrier/lift_gate.svg +++ b/symbols/barrier/lift_gate.svg @@ -1,8 +1,4 @@ - - - - + + + diff --git a/symbols/barrier/motorcycle_barrier.svg b/symbols/barrier/motorcycle_barrier.svg index 7139c299cc..fce847e37a 100644 --- a/symbols/barrier/motorcycle_barrier.svg +++ b/symbols/barrier/motorcycle_barrier.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/barrier/stile.svg b/symbols/barrier/stile.svg index d089ff212d..d23e6cef5d 100644 --- a/symbols/barrier/stile.svg +++ b/symbols/barrier/stile.svg @@ -1,36 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/barrier/toll_booth.svg b/symbols/barrier/toll_booth.svg index 7742b1048d..9c0938bc05 100644 --- a/symbols/barrier/toll_booth.svg +++ b/symbols/barrier/toll_booth.svg @@ -1,32 +1,5 @@ - - - - - - - image/svg+xml - - - - - - - + + + + From 840cf2e3bf86dd863e9b834873074ac33a205c9e Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 20:45:55 +0200 Subject: [PATCH 18/55] Clean highway symbols --- style/amenity-points.mss | 11 ++++++----- symbols/highway/bus_stop.12.svg | 5 ----- symbols/highway/bus_stop.svg | 4 ++++ symbols/highway/elevator.12.svg | 17 ----------------- symbols/highway/elevator.svg | 4 ++++ symbols/highway/ford.svg | 14 ++------------ symbols/highway/traffic_light.13.svg | 20 -------------------- symbols/highway/traffic_light.svg | 4 ++++ 8 files changed, 20 insertions(+), 59 deletions(-) delete mode 100644 symbols/highway/bus_stop.12.svg create mode 100644 symbols/highway/bus_stop.svg delete mode 100644 symbols/highway/elevator.12.svg create mode 100644 symbols/highway/elevator.svg delete mode 100644 symbols/highway/traffic_light.13.svg create mode 100644 symbols/highway/traffic_light.svg diff --git a/style/amenity-points.mss b/style/amenity-points.mss index abfd6e04b0..69548dfa4e 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -145,22 +145,23 @@ } [feature = 'highway_bus_stop'] { - [zoom >= 16] { + [zoom >= 16][zoom < 17] { marker-file: url('symbols/square.svg'); marker-fill: @transportation-icon; marker-width: 6; marker-clip: false; } [zoom >= 17] { - marker-file: url('symbols/highway/bus_stop.12.svg'); - marker-width: 12; + marker-file: url('symbols/highway/bus_stop.svg'); + marker-fill: @transportation-icon; + marker-clip: false; } } [feature = 'highway_elevator'][zoom >= 18] { [access = null], [access = 'yes'] { - marker-file: url('symbols/highway/elevator.12.svg'); + marker-file: url('symbols/highway/elevator.svg'); marker-fill: @transportation-icon; } } @@ -192,7 +193,7 @@ } [feature = 'highway_traffic_signals'][zoom >= 17] { - marker-file: url('symbols/highway/traffic_light.13.svg'); + marker-file: url('symbols/highway/traffic_light.svg'); marker-fill: #545454; marker-clip: false; } diff --git a/symbols/highway/bus_stop.12.svg b/symbols/highway/bus_stop.12.svg deleted file mode 100644 index 65f353488b..0000000000 --- a/symbols/highway/bus_stop.12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/symbols/highway/bus_stop.svg b/symbols/highway/bus_stop.svg new file mode 100644 index 0000000000..463e3e4ab7 --- /dev/null +++ b/symbols/highway/bus_stop.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/highway/elevator.12.svg b/symbols/highway/elevator.12.svg deleted file mode 100644 index 1263250b51..0000000000 --- a/symbols/highway/elevator.12.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - diff --git a/symbols/highway/elevator.svg b/symbols/highway/elevator.svg new file mode 100644 index 0000000000..b6438c939c --- /dev/null +++ b/symbols/highway/elevator.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/highway/ford.svg b/symbols/highway/ford.svg index 39a6a90010..4281dd6a81 100644 --- a/symbols/highway/ford.svg +++ b/symbols/highway/ford.svg @@ -1,15 +1,5 @@ - - - - - image/svg+xml - - - - - - + - + diff --git a/symbols/highway/traffic_light.13.svg b/symbols/highway/traffic_light.13.svg deleted file mode 100644 index 27de6bcbbe..0000000000 --- a/symbols/highway/traffic_light.13.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - diff --git a/symbols/highway/traffic_light.svg b/symbols/highway/traffic_light.svg new file mode 100644 index 0000000000..b39c2e536b --- /dev/null +++ b/symbols/highway/traffic_light.svg @@ -0,0 +1,4 @@ + + + + From 2c62b9cf3d9e6b4cafa066c4edcfdec43340dfff Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 20:59:48 +0200 Subject: [PATCH 19/55] Clean historic symbols --- symbols/historic/archaeological_site.svg | 16 ++----- symbols/historic/bust.svg | 33 ++------------ symbols/historic/castle.svg | 40 ++--------------- symbols/historic/city_gate.svg | 42 ++--------------- symbols/historic/fort.svg | 40 ++--------------- symbols/historic/fortress.svg | 40 ++--------------- symbols/historic/manor.svg | 31 ++----------- symbols/historic/memorial.svg | 22 ++------- symbols/historic/monument.svg | 23 ++-------- symbols/historic/obelisk.svg | 57 ++---------------------- symbols/historic/palace.svg | 40 ++--------------- symbols/historic/plaque.svg | 42 ++--------------- symbols/historic/shrine.svg | 33 ++------------ symbols/historic/statue.svg | 33 ++------------ symbols/historic/stone.svg | 33 ++------------ 15 files changed, 45 insertions(+), 480 deletions(-) diff --git a/symbols/historic/archaeological_site.svg b/symbols/historic/archaeological_site.svg index 19fc272833..32cf2e4e47 100644 --- a/symbols/historic/archaeological_site.svg +++ b/symbols/historic/archaeological_site.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/bust.svg b/symbols/historic/bust.svg index 0af194b331..9ece9e3e09 100644 --- a/symbols/historic/bust.svg +++ b/symbols/historic/bust.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/historic/castle.svg b/symbols/historic/castle.svg index 9f7b6b982a..c5411cc070 100644 --- a/symbols/historic/castle.svg +++ b/symbols/historic/castle.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/city_gate.svg b/symbols/historic/city_gate.svg index 6d9fe65b68..fe3ac53fc5 100644 --- a/symbols/historic/city_gate.svg +++ b/symbols/historic/city_gate.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/fort.svg b/symbols/historic/fort.svg index dcc817175a..c38ab9deb6 100644 --- a/symbols/historic/fort.svg +++ b/symbols/historic/fort.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/fortress.svg b/symbols/historic/fortress.svg index 773534f226..d4396141a9 100644 --- a/symbols/historic/fortress.svg +++ b/symbols/historic/fortress.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/manor.svg b/symbols/historic/manor.svg index fba7c76585..b98523dc1f 100644 --- a/symbols/historic/manor.svg +++ b/symbols/historic/manor.svg @@ -1,29 +1,4 @@ - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/historic/memorial.svg b/symbols/historic/memorial.svg index 5307e2e96d..45a51e7701 100644 --- a/symbols/historic/memorial.svg +++ b/symbols/historic/memorial.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/historic/monument.svg b/symbols/historic/monument.svg index 25890a65a8..be854aeb2c 100644 --- a/symbols/historic/monument.svg +++ b/symbols/historic/monument.svg @@ -1,21 +1,4 @@ - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/symbols/historic/obelisk.svg b/symbols/historic/obelisk.svg index 84f8a487a0..62dd32c1a8 100644 --- a/symbols/historic/obelisk.svg +++ b/symbols/historic/obelisk.svg @@ -1,55 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/historic/palace.svg b/symbols/historic/palace.svg index 48539c85ab..6d6a534c8a 100644 --- a/symbols/historic/palace.svg +++ b/symbols/historic/palace.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/plaque.svg b/symbols/historic/plaque.svg index cf0e4660a2..7275755418 100644 --- a/symbols/historic/plaque.svg +++ b/symbols/historic/plaque.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/historic/shrine.svg b/symbols/historic/shrine.svg index 16e2dbed87..9b194ff780 100644 --- a/symbols/historic/shrine.svg +++ b/symbols/historic/shrine.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/historic/statue.svg b/symbols/historic/statue.svg index b21d1b9c98..694b48363b 100644 --- a/symbols/historic/statue.svg +++ b/symbols/historic/statue.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/historic/stone.svg b/symbols/historic/stone.svg index 4ac2e84958..72f6e79718 100644 --- a/symbols/historic/stone.svg +++ b/symbols/historic/stone.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + From de95384054a55d4f9c562cf11f2b6ddcbf48c9b4 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 21:23:12 +0200 Subject: [PATCH 20/55] Clean leisure symbols --- symbols/leisure/amusement_arcade.svg | 22 ++------------ symbols/leisure/beach_resort.svg | 45 +++------------------------- symbols/leisure/bird_hide.svg | 33 ++------------------ symbols/leisure/bowling_alley.svg | 41 ++----------------------- symbols/leisure/firepit.svg | 33 ++------------------ symbols/leisure/fishing.svg | 41 ++----------------------- symbols/leisure/fitness.svg | 34 +++------------------ symbols/leisure/golf.svg | 12 ++------ symbols/leisure/miniature_golf.svg | 2 +- symbols/leisure/outdoor_seating.svg | 33 ++------------------ symbols/leisure/playground.svg | 27 ++--------------- symbols/leisure/sauna.svg | 31 +++++-------------- symbols/leisure/slipway.svg | 33 ++------------------ symbols/leisure/water_park.svg | 20 ++----------- 14 files changed, 45 insertions(+), 362 deletions(-) diff --git a/symbols/leisure/amusement_arcade.svg b/symbols/leisure/amusement_arcade.svg index 19a42495fb..5aad02c494 100644 --- a/symbols/leisure/amusement_arcade.svg +++ b/symbols/leisure/amusement_arcade.svg @@ -1,22 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - + + diff --git a/symbols/leisure/beach_resort.svg b/symbols/leisure/beach_resort.svg index fc3c4324e8..b4b544cbcd 100644 --- a/symbols/leisure/beach_resort.svg +++ b/symbols/leisure/beach_resort.svg @@ -1,42 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + diff --git a/symbols/leisure/bird_hide.svg b/symbols/leisure/bird_hide.svg index 7f3d5252fd..42268b9e39 100644 --- a/symbols/leisure/bird_hide.svg +++ b/symbols/leisure/bird_hide.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/leisure/bowling_alley.svg b/symbols/leisure/bowling_alley.svg index 85a035ce1b..2adfb4122b 100644 --- a/symbols/leisure/bowling_alley.svg +++ b/symbols/leisure/bowling_alley.svg @@ -1,39 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/leisure/firepit.svg b/symbols/leisure/firepit.svg index 1a454a8311..9c5c492633 100644 --- a/symbols/leisure/firepit.svg +++ b/symbols/leisure/firepit.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/leisure/fishing.svg b/symbols/leisure/fishing.svg index e11b3b0f30..5294b083c7 100644 --- a/symbols/leisure/fishing.svg +++ b/symbols/leisure/fishing.svg @@ -1,39 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/leisure/fitness.svg b/symbols/leisure/fitness.svg index f4164e3acf..4b98a3c8f1 100644 --- a/symbols/leisure/fitness.svg +++ b/symbols/leisure/fitness.svg @@ -1,30 +1,4 @@ - -image/svg+xml - \ No newline at end of file + + + + diff --git a/symbols/leisure/golf.svg b/symbols/leisure/golf.svg index bf42cd7114..9f6b0d2cd3 100644 --- a/symbols/leisure/golf.svg +++ b/symbols/leisure/golf.svg @@ -1,10 +1,4 @@ - - - + + + diff --git a/symbols/leisure/miniature_golf.svg b/symbols/leisure/miniature_golf.svg index d0578320f4..f7257658ec 100644 --- a/symbols/leisure/miniature_golf.svg +++ b/symbols/leisure/miniature_golf.svg @@ -1,5 +1,5 @@ - + diff --git a/symbols/leisure/outdoor_seating.svg b/symbols/leisure/outdoor_seating.svg index 2373b23aed..3d12fb2428 100644 --- a/symbols/leisure/outdoor_seating.svg +++ b/symbols/leisure/outdoor_seating.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/leisure/playground.svg b/symbols/leisure/playground.svg index 02372854e0..b0a2720211 100644 --- a/symbols/leisure/playground.svg +++ b/symbols/leisure/playground.svg @@ -1,25 +1,4 @@ - - - - - - + + + diff --git a/symbols/leisure/sauna.svg b/symbols/leisure/sauna.svg index 92d04691bb..1b964ef34c 100644 --- a/symbols/leisure/sauna.svg +++ b/symbols/leisure/sauna.svg @@ -1,26 +1,9 @@ - - - - -image/svg+xml - - - - - - - - - - - - - - - - - - + + + + + + + - diff --git a/symbols/leisure/slipway.svg b/symbols/leisure/slipway.svg index bbf49da219..d0ec98a32b 100644 --- a/symbols/leisure/slipway.svg +++ b/symbols/leisure/slipway.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/leisure/water_park.svg b/symbols/leisure/water_park.svg index 39619e7a39..203b8a9fc5 100644 --- a/symbols/leisure/water_park.svg +++ b/symbols/leisure/water_park.svg @@ -1,18 +1,4 @@ - - - - + + + From 113ae1ca4676d8ce698e0bc5adf64e9f20afa74e Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 23 Aug 2021 21:43:21 +0200 Subject: [PATCH 21/55] Clean man_made symbols --- symbols/man_made/bell_tower.svg | 33 ++---------- symbols/man_made/chimney.svg | 15 +----- symbols/man_made/communications_tower.svg | 51 ++----------------- symbols/man_made/crane.svg | 43 ++-------------- symbols/man_made/cross.svg | 22 ++------ symbols/man_made/lighthouse.svg | 39 ++------------ symbols/man_made/mast.svg | 39 ++------------ symbols/man_made/mast_communications.svg | 39 ++------------ symbols/man_made/mast_lighting.svg | 39 ++------------ symbols/man_made/power_tower.svg | 8 +-- symbols/man_made/power_tower_small.svg | 8 +-- symbols/man_made/storage_tank.svg | 33 ++---------- symbols/man_made/telescope_dish.svg | 33 ++---------- symbols/man_made/telescope_dome.svg | 43 ++-------------- .../tower_cantilever_communication.svg | 39 ++------------ symbols/man_made/tower_cooling.svg | 17 +------ symbols/man_made/tower_defensive.svg | 42 ++------------- symbols/man_made/tower_dish.svg | 33 ++---------- symbols/man_made/tower_dome.svg | 13 +---- symbols/man_made/tower_generic.svg | 39 ++------------ symbols/man_made/tower_lattice.svg | 40 ++------------- .../man_made/tower_lattice_communication.svg | 39 ++------------ symbols/man_made/tower_lattice_lighting.svg | 39 ++------------ symbols/man_made/tower_lighting.svg | 39 ++------------ symbols/man_made/tower_observation.svg | 39 ++------------ symbols/man_made/water_tower.svg | 41 ++------------- symbols/man_made/windmill.svg | 16 ++---- 27 files changed, 75 insertions(+), 806 deletions(-) diff --git a/symbols/man_made/bell_tower.svg b/symbols/man_made/bell_tower.svg index f77d4560a4..1ccf0c7380 100644 --- a/symbols/man_made/bell_tower.svg +++ b/symbols/man_made/bell_tower.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/man_made/chimney.svg b/symbols/man_made/chimney.svg index a0d85f421b..0ed952ea0a 100644 --- a/symbols/man_made/chimney.svg +++ b/symbols/man_made/chimney.svg @@ -1,16 +1,5 @@ - - - - - image/svg+xml - - - - - - - + + - diff --git a/symbols/man_made/communications_tower.svg b/symbols/man_made/communications_tower.svg index 84d3062428..490e24bfe0 100644 --- a/symbols/man_made/communications_tower.svg +++ b/symbols/man_made/communications_tower.svg @@ -1,49 +1,4 @@ - - - - - - - - - - - - image/svgxml - - - - - - - + + + diff --git a/symbols/man_made/crane.svg b/symbols/man_made/crane.svg index 072eda7776..32ab035cd3 100755 --- a/symbols/man_made/crane.svg +++ b/symbols/man_made/crane.svg @@ -1,41 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + diff --git a/symbols/man_made/cross.svg b/symbols/man_made/cross.svg index 5d33b51bee..65ce50c861 100644 --- a/symbols/man_made/cross.svg +++ b/symbols/man_made/cross.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/man_made/lighthouse.svg b/symbols/man_made/lighthouse.svg index c27d78a157..4d6699d901 100644 --- a/symbols/man_made/lighthouse.svg +++ b/symbols/man_made/lighthouse.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/mast.svg b/symbols/man_made/mast.svg index 95d298e59f..eb2df02b30 100644 --- a/symbols/man_made/mast.svg +++ b/symbols/man_made/mast.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/mast_communications.svg b/symbols/man_made/mast_communications.svg index b67630f49d..35584b0be5 100644 --- a/symbols/man_made/mast_communications.svg +++ b/symbols/man_made/mast_communications.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/mast_lighting.svg b/symbols/man_made/mast_lighting.svg index bbdfa1ec65..5a27d2ac25 100644 --- a/symbols/man_made/mast_lighting.svg +++ b/symbols/man_made/mast_lighting.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/power_tower.svg b/symbols/man_made/power_tower.svg index a42b96d717..1d0d41a3a9 100644 --- a/symbols/man_made/power_tower.svg +++ b/symbols/man_made/power_tower.svg @@ -1,9 +1,5 @@ - - - + + diff --git a/symbols/man_made/power_tower_small.svg b/symbols/man_made/power_tower_small.svg index 2c88320265..ea97b19595 100644 --- a/symbols/man_made/power_tower_small.svg +++ b/symbols/man_made/power_tower_small.svg @@ -1,9 +1,5 @@ - - - + + diff --git a/symbols/man_made/storage_tank.svg b/symbols/man_made/storage_tank.svg index f818aa55d6..7ec71d098c 100644 --- a/symbols/man_made/storage_tank.svg +++ b/symbols/man_made/storage_tank.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/man_made/telescope_dish.svg b/symbols/man_made/telescope_dish.svg index a49eb985d7..432726ad1f 100644 --- a/symbols/man_made/telescope_dish.svg +++ b/symbols/man_made/telescope_dish.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/man_made/telescope_dome.svg b/symbols/man_made/telescope_dome.svg index 60f7887af8..7a2b0872fb 100644 --- a/symbols/man_made/telescope_dome.svg +++ b/symbols/man_made/telescope_dome.svg @@ -1,41 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + diff --git a/symbols/man_made/tower_cantilever_communication.svg b/symbols/man_made/tower_cantilever_communication.svg index 56b0d1da79..6eaa69bbcc 100644 --- a/symbols/man_made/tower_cantilever_communication.svg +++ b/symbols/man_made/tower_cantilever_communication.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_cooling.svg b/symbols/man_made/tower_cooling.svg index 3f2ff57b0c..84b50223aa 100644 --- a/symbols/man_made/tower_cooling.svg +++ b/symbols/man_made/tower_cooling.svg @@ -1,17 +1,4 @@ - - - - - image/svg+xml - - - - - - - - - - + + diff --git a/symbols/man_made/tower_defensive.svg b/symbols/man_made/tower_defensive.svg index c24212075f..80bcc9004a 100644 --- a/symbols/man_made/tower_defensive.svg +++ b/symbols/man_made/tower_defensive.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_dish.svg b/symbols/man_made/tower_dish.svg index 8ad4be5a24..3aac78ab8e 100644 --- a/symbols/man_made/tower_dish.svg +++ b/symbols/man_made/tower_dish.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/man_made/tower_dome.svg b/symbols/man_made/tower_dome.svg index b774f1fc92..73b930f39b 100644 --- a/symbols/man_made/tower_dome.svg +++ b/symbols/man_made/tower_dome.svg @@ -1,17 +1,6 @@ - - - - - image/svg+xml - - - - - - + - diff --git a/symbols/man_made/tower_generic.svg b/symbols/man_made/tower_generic.svg index e7db52ff2a..bc92156bce 100644 --- a/symbols/man_made/tower_generic.svg +++ b/symbols/man_made/tower_generic.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_lattice.svg b/symbols/man_made/tower_lattice.svg index 145f5c0378..6bc39e3d79 100644 --- a/symbols/man_made/tower_lattice.svg +++ b/symbols/man_made/tower_lattice.svg @@ -1,38 +1,4 @@ - - - - - - image/svgxml - - - - - - - - + + + diff --git a/symbols/man_made/tower_lattice_communication.svg b/symbols/man_made/tower_lattice_communication.svg index 3ff955591b..08b353a867 100644 --- a/symbols/man_made/tower_lattice_communication.svg +++ b/symbols/man_made/tower_lattice_communication.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_lattice_lighting.svg b/symbols/man_made/tower_lattice_lighting.svg index 7a2b78b9a6..a0ed0496f1 100644 --- a/symbols/man_made/tower_lattice_lighting.svg +++ b/symbols/man_made/tower_lattice_lighting.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_lighting.svg b/symbols/man_made/tower_lighting.svg index 4f247f4ffa..a79187844b 100644 --- a/symbols/man_made/tower_lighting.svg +++ b/symbols/man_made/tower_lighting.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/tower_observation.svg b/symbols/man_made/tower_observation.svg index 19a01651eb..5b8f0d5367 100644 --- a/symbols/man_made/tower_observation.svg +++ b/symbols/man_made/tower_observation.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/water_tower.svg b/symbols/man_made/water_tower.svg index d373eb30ed..1303764b6a 100644 --- a/symbols/man_made/water_tower.svg +++ b/symbols/man_made/water_tower.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/man_made/windmill.svg b/symbols/man_made/windmill.svg index 0ec27158ba..bcfeab942a 100644 --- a/symbols/man_made/windmill.svg +++ b/symbols/man_made/windmill.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + From bff886e0e5c354311d3c0ab63b090ac5532c42d1 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Tue, 24 Aug 2021 08:17:25 +0200 Subject: [PATCH 22/55] Clean natural, office and place symbols --- symbols/natural/cave.svg | 40 +++---------------------------- symbols/natural/peak.svg | 17 +++---------- symbols/natural/saddle.svg | 17 +++---------- symbols/office/consulate.svg | 40 +++---------------------------- symbols/office/embassy.svg | 23 +++--------------- symbols/place/place-4-z7.svg | 12 +++------- symbols/place/place-4.svg | 12 +++------- symbols/place/place-6-z7.svg | 11 +++------ symbols/place/place-6.svg | 12 +++------- symbols/place/place-capital-6.svg | 15 +++--------- symbols/place/place-capital-8.svg | 16 ++++--------- 11 files changed, 34 insertions(+), 181 deletions(-) diff --git a/symbols/natural/cave.svg b/symbols/natural/cave.svg index 2082382342..d9d3a48dbc 100644 --- a/symbols/natural/cave.svg +++ b/symbols/natural/cave.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/natural/peak.svg b/symbols/natural/peak.svg index 8886875585..738b7882a7 100644 --- a/symbols/natural/peak.svg +++ b/symbols/natural/peak.svg @@ -1,15 +1,4 @@ - - - - - + + + diff --git a/symbols/natural/saddle.svg b/symbols/natural/saddle.svg index 37f4aea717..4b7f9a5b99 100644 --- a/symbols/natural/saddle.svg +++ b/symbols/natural/saddle.svg @@ -1,15 +1,4 @@ - - - - - + + + diff --git a/symbols/office/consulate.svg b/symbols/office/consulate.svg index a30e894468..927be699a4 100644 --- a/symbols/office/consulate.svg +++ b/symbols/office/consulate.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/office/embassy.svg b/symbols/office/embassy.svg index 4f02ae1f42..024eecdb79 100644 --- a/symbols/office/embassy.svg +++ b/symbols/office/embassy.svg @@ -1,21 +1,4 @@ - - - - - - + + + diff --git a/symbols/place/place-4-z7.svg b/symbols/place/place-4-z7.svg index 9e80620498..affffaa853 100644 --- a/symbols/place/place-4-z7.svg +++ b/symbols/place/place-4-z7.svg @@ -1,10 +1,4 @@ - - - + + + diff --git a/symbols/place/place-4.svg b/symbols/place/place-4.svg index 627c7c6148..376db473b4 100644 --- a/symbols/place/place-4.svg +++ b/symbols/place/place-4.svg @@ -1,10 +1,4 @@ - - - + + + diff --git a/symbols/place/place-6-z7.svg b/symbols/place/place-6-z7.svg index 9ef66b7995..ea3630db18 100644 --- a/symbols/place/place-6-z7.svg +++ b/symbols/place/place-6-z7.svg @@ -1,9 +1,4 @@ - - - + + + diff --git a/symbols/place/place-6.svg b/symbols/place/place-6.svg index 7f83b77da7..74b3e5dda4 100644 --- a/symbols/place/place-6.svg +++ b/symbols/place/place-6.svg @@ -1,10 +1,4 @@ - - - + + + diff --git a/symbols/place/place-capital-6.svg b/symbols/place/place-capital-6.svg index 8d81dc4658..aa41d55655 100644 --- a/symbols/place/place-capital-6.svg +++ b/symbols/place/place-capital-6.svg @@ -1,13 +1,4 @@ - - - - + + + diff --git a/symbols/place/place-capital-8.svg b/symbols/place/place-capital-8.svg index 42a9906b45..dd19537f94 100644 --- a/symbols/place/place-capital-8.svg +++ b/symbols/place/place-capital-8.svg @@ -1,13 +1,5 @@ - - - - + + + + From de305aa4932ab2dcc5caca21a0759dc3a4bc931d Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Tue, 24 Aug 2021 08:24:33 +0200 Subject: [PATCH 23/55] Clean religion symbols --- symbols/religion/buddhist.svg | 22 +++---------------- symbols/religion/christian.svg | 22 +++---------------- symbols/religion/hinduist.svg | 22 +++---------------- symbols/religion/jewish.svg | 40 +++------------------------------- symbols/religion/muslim.svg | 22 +++---------------- symbols/religion/shintoist.svg | 22 +++---------------- symbols/religion/sikhist.svg | 22 +++---------------- symbols/religion/taoist.svg | 22 +++---------------- 8 files changed, 24 insertions(+), 170 deletions(-) diff --git a/symbols/religion/buddhist.svg b/symbols/religion/buddhist.svg index 3f1b190806..f8c7340961 100644 --- a/symbols/religion/buddhist.svg +++ b/symbols/religion/buddhist.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/christian.svg b/symbols/religion/christian.svg index 8461e9c3ea..d9eafbca12 100644 --- a/symbols/religion/christian.svg +++ b/symbols/religion/christian.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/hinduist.svg b/symbols/religion/hinduist.svg index fcaf03ca4b..7301204e86 100644 --- a/symbols/religion/hinduist.svg +++ b/symbols/religion/hinduist.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/jewish.svg b/symbols/religion/jewish.svg index ca78e7da64..84231b66d2 100644 --- a/symbols/religion/jewish.svg +++ b/symbols/religion/jewish.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/religion/muslim.svg b/symbols/religion/muslim.svg index 7bc5aa0aac..8f39450a8c 100644 --- a/symbols/religion/muslim.svg +++ b/symbols/religion/muslim.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/shintoist.svg b/symbols/religion/shintoist.svg index 77b2d0fb16..e86a114e6f 100644 --- a/symbols/religion/shintoist.svg +++ b/symbols/religion/shintoist.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/sikhist.svg b/symbols/religion/sikhist.svg index 35524f26f1..0fa382fdad 100644 --- a/symbols/religion/sikhist.svg +++ b/symbols/religion/sikhist.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/religion/taoist.svg b/symbols/religion/taoist.svg index 0f179fabcc..dbedf73d45 100644 --- a/symbols/religion/taoist.svg +++ b/symbols/religion/taoist.svg @@ -1,20 +1,4 @@ - - - - - - + + + From c82b69aac53e24d64581f74d4b1fba25aeb77775 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Thu, 26 Aug 2021 09:15:43 +0200 Subject: [PATCH 24/55] Clean shop symbols --- symbols/shop/alcohol.svg | 16 +--- symbols/shop/art.svg | 40 +--------- symbols/shop/bag.svg | 42 +--------- symbols/shop/bakery.svg | 22 +---- symbols/shop/beauty.svg | 42 +--------- symbols/shop/bed.svg | 4 +- symbols/shop/beverages.svg | 40 +--------- symbols/shop/bicycle.svg | 41 +--------- symbols/shop/bookmaker.svg | 77 +----------------- symbols/shop/butcher.svg | 115 +-------------------------- symbols/shop/car.svg | 59 +------------- symbols/shop/car_parts.svg | 42 +--------- symbols/shop/carpet.svg | 33 +------- symbols/shop/charity.svg | 39 +-------- symbols/shop/chemist.svg | 43 +--------- symbols/shop/clothes.svg | 16 +--- symbols/shop/coffee.svg | 11 +-- symbols/shop/computer.svg | 34 +------- symbols/shop/confectionery.svg | 42 +--------- symbols/shop/convenience.svg | 88 +------------------- symbols/shop/copyshop.svg | 42 +--------- symbols/shop/dairy.svg | 38 +-------- symbols/shop/deli.svg | 22 +---- symbols/shop/department_store.svg | 39 +-------- symbols/shop/diy.svg | 41 +--------- symbols/shop/electronics.svg | 16 +--- symbols/shop/fabric.svg | 33 +------- symbols/shop/florist.svg | 41 +--------- symbols/shop/furniture.svg | 16 +--- symbols/shop/garden_centre.svg | 42 +--------- symbols/shop/gift.svg | 16 +--- symbols/shop/greengrocer.svg | 42 +--------- symbols/shop/hairdresser.svg | 41 +--------- symbols/shop/hifi.svg | 40 +--------- symbols/shop/houseware.svg | 5 +- symbols/shop/interior_decoration.svg | 33 +------- symbols/shop/jewelry.svg | 16 +--- symbols/shop/laundry.svg | 40 +--------- symbols/shop/marketplace.svg | 3 +- symbols/shop/massage.svg | 33 +------- symbols/shop/medical_supply.svg | 39 +-------- symbols/shop/mobile_phone.svg | 16 +--- symbols/shop/music.svg | 63 +-------------- symbols/shop/musical_instrument.svg | 34 +------- symbols/shop/newsagent.svg | 40 +--------- symbols/shop/optician.svg | 16 +--- symbols/shop/outdoor.svg | 40 +--------- symbols/shop/paint.svg | 33 +------- symbols/shop/perfumery.svg | 40 +--------- symbols/shop/pet.svg | 41 +--------- symbols/shop/photo.svg | 40 +--------- symbols/shop/seafood.svg | 35 +------- symbols/shop/second_hand.svg | 43 +--------- symbols/shop/shoes.svg | 41 +--------- symbols/shop/sports.svg | 35 +------- symbols/shop/stationery.svg | 42 +--------- symbols/shop/supermarket.svg | 104 +----------------------- symbols/shop/tea.svg | 67 +--------------- symbols/shop/ticket.svg | 6 +- symbols/shop/tobacco.svg | 35 +------- symbols/shop/toys.svg | 34 +------- symbols/shop/trade.svg | 33 +------- symbols/shop/travel_agency.svg | 42 +--------- symbols/shop/tyres.svg | 40 +--------- symbols/shop/variety_store.svg | 39 +-------- symbols/shop/video.svg | 68 +--------------- symbols/shop/video_games.svg | 29 +------ 67 files changed, 207 insertions(+), 2333 deletions(-) diff --git a/symbols/shop/alcohol.svg b/symbols/shop/alcohol.svg index 306d1834fc..90e6feda6c 100644 --- a/symbols/shop/alcohol.svg +++ b/symbols/shop/alcohol.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/art.svg b/symbols/shop/art.svg index 915f842d57..613e7befbc 100644 --- a/symbols/shop/art.svg +++ b/symbols/shop/art.svg @@ -1,39 +1,5 @@ - - - - - - - image/svg+xml - - - - - - - - - - - + + + d="M 7,-9.9999999e-8 C 3.134444,-9.9999999e-8 0,3.1344439 0,7 c 0,3.865556 3.134444,7 7,7 0.645556,0 1.1660156,-0.520461 1.1660156,-1.166016 0,-0.303333 -0.1121788,-0.577093 -0.3027344,-0.783203 -0.1827769,-0.206111 -0.2910156,-0.473992 -0.2910156,-0.773437 0,-0.645556 0.5204596,-1.166016 1.1660156,-1.166016 l 1.3730468,0 C 12.257994,10.111328 14,8.369323 14,6.222656 c 0,-3.4377778 -3.134445,-6.2226561 -7,-6.2226561 z M 8.9335938,1.3046874 A 1.3891786,1.3891786 0 0 1 10.322266,2.6933593 1.3891786,1.3891786 0 0 1 8.9335938,4.0839843 1.3891786,1.3891786 0 0 1 7.5449219,2.6933593 1.3891786,1.3891786 0 0 1 8.9335938,1.3046874 Z M 5.0390625,1.3242187 A 1.3891786,1.3891786 0 0 1 6.4296875,2.7148437 1.3891786,1.3891786 0 0 1 5.0390625,4.1035155 1.3891786,1.3891786 0 0 1 3.6503906,2.7148437 1.3891786,1.3891786 0 0 1 5.0390625,1.3242187 Z M 2.7070312,4.4472655 A 1.3891786,1.3891786 0 0 1 4.0957031,5.83789 1.3891786,1.3891786 0 0 1 2.7070312,7.226562 1.3891786,1.3891786 0 0 1 1.3183594,5.83789 1.3891786,1.3891786 0 0 1 2.7070312,4.4472655 Z m 8.5585938,0 A 1.3891786,1.3891786 0 0 1 12.654297,5.83789 1.3891786,1.3891786 0 0 1 11.265625,7.226562 1.3891786,1.3891786 0 0 1 9.8769531,5.83789 1.3891786,1.3891786 0 0 1 11.265625,4.4472655 Z"/> diff --git a/symbols/shop/bag.svg b/symbols/shop/bag.svg index 6a836f6433..5dee5021c0 100644 --- a/symbols/shop/bag.svg +++ b/symbols/shop/bag.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/bakery.svg b/symbols/shop/bakery.svg index 9197717f12..6cdc56d9cb 100644 --- a/symbols/shop/bakery.svg +++ b/symbols/shop/bakery.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/shop/beauty.svg b/symbols/shop/beauty.svg index 174e5f0d64..cbe95d61a2 100644 --- a/symbols/shop/beauty.svg +++ b/symbols/shop/beauty.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/bed.svg b/symbols/shop/bed.svg index 9e3a2cc3bd..4e8032504e 100644 --- a/symbols/shop/bed.svg +++ b/symbols/shop/bed.svg @@ -1,4 +1,4 @@ - + - \ No newline at end of file + diff --git a/symbols/shop/beverages.svg b/symbols/shop/beverages.svg index dfbb9ae58a..20b14d893c 100644 --- a/symbols/shop/beverages.svg +++ b/symbols/shop/beverages.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/bicycle.svg b/symbols/shop/bicycle.svg index 85c06fb5d0..c41d053715 100644 --- a/symbols/shop/bicycle.svg +++ b/symbols/shop/bicycle.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/bookmaker.svg b/symbols/shop/bookmaker.svg index 50096499c6..53af5e4c21 100644 --- a/symbols/shop/bookmaker.svg +++ b/symbols/shop/bookmaker.svg @@ -1,74 +1,5 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + diff --git a/symbols/shop/butcher.svg b/symbols/shop/butcher.svg index b97d37635d..1c76fe557a 100644 --- a/symbols/shop/butcher.svg +++ b/symbols/shop/butcher.svg @@ -1,113 +1,4 @@ - - - - - - image/svg+xml - - - en - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/symbols/shop/car.svg b/symbols/shop/car.svg index 201f5fa0a4..b32e8a4dcb 100644 --- a/symbols/shop/car.svg +++ b/symbols/shop/car.svg @@ -1,57 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - + + + diff --git a/symbols/shop/car_parts.svg b/symbols/shop/car_parts.svg index 04b1219b02..d34ad6f0eb 100644 --- a/symbols/shop/car_parts.svg +++ b/symbols/shop/car_parts.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/carpet.svg b/symbols/shop/carpet.svg index 4e3fc02e6b..7bc6f64e50 100644 --- a/symbols/shop/carpet.svg +++ b/symbols/shop/carpet.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/shop/charity.svg b/symbols/shop/charity.svg index 959a44d428..8f5c2ee461 100644 --- a/symbols/shop/charity.svg +++ b/symbols/shop/charity.svg @@ -1,37 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/chemist.svg b/symbols/shop/chemist.svg index ec278d2671..6de827038e 100644 --- a/symbols/shop/chemist.svg +++ b/symbols/shop/chemist.svg @@ -1,40 +1,5 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + + diff --git a/symbols/shop/clothes.svg b/symbols/shop/clothes.svg index 42f2bbe3a4..496c109b68 100644 --- a/symbols/shop/clothes.svg +++ b/symbols/shop/clothes.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/coffee.svg b/symbols/shop/coffee.svg index c30d174261..9ccbe5721d 100644 --- a/symbols/shop/coffee.svg +++ b/symbols/shop/coffee.svg @@ -1,9 +1,4 @@ - - - + + + diff --git a/symbols/shop/computer.svg b/symbols/shop/computer.svg index 114c508c19..e9d3f879dc 100644 --- a/symbols/shop/computer.svg +++ b/symbols/shop/computer.svg @@ -1,30 +1,4 @@ - -image/svg+xml - - + + + + diff --git a/symbols/shop/confectionery.svg b/symbols/shop/confectionery.svg index 7da0e243ef..97b264805f 100644 --- a/symbols/shop/confectionery.svg +++ b/symbols/shop/confectionery.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/convenience.svg b/symbols/shop/convenience.svg index 918a9e1ab1..2f6feb9713 100644 --- a/symbols/shop/convenience.svg +++ b/symbols/shop/convenience.svg @@ -1,85 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - + + + + diff --git a/symbols/shop/copyshop.svg b/symbols/shop/copyshop.svg index 33f83138f6..24d4d28687 100644 --- a/symbols/shop/copyshop.svg +++ b/symbols/shop/copyshop.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/dairy.svg b/symbols/shop/dairy.svg index c57d94ae63..9137d31b7e 100644 --- a/symbols/shop/dairy.svg +++ b/symbols/shop/dairy.svg @@ -1,36 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/symbols/shop/deli.svg b/symbols/shop/deli.svg index 72b3c0f6b6..c4efaf8944 100644 --- a/symbols/shop/deli.svg +++ b/symbols/shop/deli.svg @@ -1,20 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - + + + diff --git a/symbols/shop/department_store.svg b/symbols/shop/department_store.svg index 6082e1c438..9c4be7ff54 100644 --- a/symbols/shop/department_store.svg +++ b/symbols/shop/department_store.svg @@ -1,37 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/diy.svg b/symbols/shop/diy.svg index 74513879cd..aba62b210c 100644 --- a/symbols/shop/diy.svg +++ b/symbols/shop/diy.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/electronics.svg b/symbols/shop/electronics.svg index 2b81103dd4..603edc3092 100644 --- a/symbols/shop/electronics.svg +++ b/symbols/shop/electronics.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/fabric.svg b/symbols/shop/fabric.svg index 143925bb9c..703c0c4b8a 100644 --- a/symbols/shop/fabric.svg +++ b/symbols/shop/fabric.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/shop/florist.svg b/symbols/shop/florist.svg index 904a8d24e0..9d5f237454 100644 --- a/symbols/shop/florist.svg +++ b/symbols/shop/florist.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/furniture.svg b/symbols/shop/furniture.svg index 4df5e0877c..4805c87c60 100644 --- a/symbols/shop/furniture.svg +++ b/symbols/shop/furniture.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/garden_centre.svg b/symbols/shop/garden_centre.svg index 2ff5db8482..67592cadfc 100644 --- a/symbols/shop/garden_centre.svg +++ b/symbols/shop/garden_centre.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/gift.svg b/symbols/shop/gift.svg index 8d1f2d4edd..a2af92e979 100644 --- a/symbols/shop/gift.svg +++ b/symbols/shop/gift.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/greengrocer.svg b/symbols/shop/greengrocer.svg index 0bf57174bc..f6dd6258de 100644 --- a/symbols/shop/greengrocer.svg +++ b/symbols/shop/greengrocer.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/hairdresser.svg b/symbols/shop/hairdresser.svg index b65c29853f..f2cafc8166 100644 --- a/symbols/shop/hairdresser.svg +++ b/symbols/shop/hairdresser.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/hifi.svg b/symbols/shop/hifi.svg index 5a684743de..aa3c945d4b 100644 --- a/symbols/shop/hifi.svg +++ b/symbols/shop/hifi.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/houseware.svg b/symbols/shop/houseware.svg index c314b6010d..91baa90424 100644 --- a/symbols/shop/houseware.svg +++ b/symbols/shop/houseware.svg @@ -1,4 +1,5 @@ - - + + + diff --git a/symbols/shop/interior_decoration.svg b/symbols/shop/interior_decoration.svg index af580591a6..c7268bb573 100644 --- a/symbols/shop/interior_decoration.svg +++ b/symbols/shop/interior_decoration.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/jewelry.svg b/symbols/shop/jewelry.svg index da61ecf6b9..0b33e6ceda 100644 --- a/symbols/shop/jewelry.svg +++ b/symbols/shop/jewelry.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/laundry.svg b/symbols/shop/laundry.svg index 3cd3a2c761..e7d4b1a68f 100644 --- a/symbols/shop/laundry.svg +++ b/symbols/shop/laundry.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/marketplace.svg b/symbols/shop/marketplace.svg index 5c5a5393f8..3d59c902dd 100644 --- a/symbols/shop/marketplace.svg +++ b/symbols/shop/marketplace.svg @@ -1,5 +1,4 @@ - - + diff --git a/symbols/shop/massage.svg b/symbols/shop/massage.svg index 2e4395a288..b39804de11 100644 --- a/symbols/shop/massage.svg +++ b/symbols/shop/massage.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/shop/medical_supply.svg b/symbols/shop/medical_supply.svg index 761f357565..12ba38b2ea 100644 --- a/symbols/shop/medical_supply.svg +++ b/symbols/shop/medical_supply.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - + + + - diff --git a/symbols/shop/mobile_phone.svg b/symbols/shop/mobile_phone.svg index 6f46910b5e..9227dfeefa 100644 --- a/symbols/shop/mobile_phone.svg +++ b/symbols/shop/mobile_phone.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/music.svg b/symbols/shop/music.svg index 7f5ac0d0c0..9f10cc5587 100644 --- a/symbols/shop/music.svg +++ b/symbols/shop/music.svg @@ -1,62 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - + + + diff --git a/symbols/shop/musical_instrument.svg b/symbols/shop/musical_instrument.svg index e4ce363eff..5d46aad7bb 100644 --- a/symbols/shop/musical_instrument.svg +++ b/symbols/shop/musical_instrument.svg @@ -1,32 +1,4 @@ - -image/svg+xml - - + + + diff --git a/symbols/shop/newsagent.svg b/symbols/shop/newsagent.svg index dd624bea16..2581ce4c36 100644 --- a/symbols/shop/newsagent.svg +++ b/symbols/shop/newsagent.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/optician.svg b/symbols/shop/optician.svg index c5c339b0ab..c93e5e1753 100644 --- a/symbols/shop/optician.svg +++ b/symbols/shop/optician.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/outdoor.svg b/symbols/shop/outdoor.svg index e18ccf48c5..3cebb40a69 100644 --- a/symbols/shop/outdoor.svg +++ b/symbols/shop/outdoor.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/paint.svg b/symbols/shop/paint.svg index ebbf1bf179..afd9c4cf63 100644 --- a/symbols/shop/paint.svg +++ b/symbols/shop/paint.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/shop/perfumery.svg b/symbols/shop/perfumery.svg index a3f88973ea..e22e75c8a4 100644 --- a/symbols/shop/perfumery.svg +++ b/symbols/shop/perfumery.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/pet.svg b/symbols/shop/pet.svg index 9c9a6818a7..fc09a0b9b6 100644 --- a/symbols/shop/pet.svg +++ b/symbols/shop/pet.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/photo.svg b/symbols/shop/photo.svg index 41d7df52ff..1fd9eb7adf 100644 --- a/symbols/shop/photo.svg +++ b/symbols/shop/photo.svg @@ -1,38 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/seafood.svg b/symbols/shop/seafood.svg index 9f59aa8b12..e11dae8387 100644 --- a/symbols/shop/seafood.svg +++ b/symbols/shop/seafood.svg @@ -1,31 +1,4 @@ - -image/svg+xml - - + + + + diff --git a/symbols/shop/second_hand.svg b/symbols/shop/second_hand.svg index 9c58e5923b..0d88a33e0d 100644 --- a/symbols/shop/second_hand.svg +++ b/symbols/shop/second_hand.svg @@ -1,41 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/shoes.svg b/symbols/shop/shoes.svg index a6edb32461..d70a3e9226 100644 --- a/symbols/shop/shoes.svg +++ b/symbols/shop/shoes.svg @@ -1,39 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/sports.svg b/symbols/shop/sports.svg index 552eaedddf..f114dab101 100644 --- a/symbols/shop/sports.svg +++ b/symbols/shop/sports.svg @@ -1,31 +1,4 @@ - -image/svg+xml - - + + + + diff --git a/symbols/shop/stationery.svg b/symbols/shop/stationery.svg index 7cbc72abb7..13dbd3c64d 100644 --- a/symbols/shop/stationery.svg +++ b/symbols/shop/stationery.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/supermarket.svg b/symbols/shop/supermarket.svg index 1c8c037828..6d87ba104d 100644 --- a/symbols/shop/supermarket.svg +++ b/symbols/shop/supermarket.svg @@ -1,102 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/symbols/shop/tea.svg b/symbols/shop/tea.svg index 480f75a5f4..aa562b7c2a 100644 --- a/symbols/shop/tea.svg +++ b/symbols/shop/tea.svg @@ -1,65 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - Jotam - - - - - - - - - - - - - + + + diff --git a/symbols/shop/ticket.svg b/symbols/shop/ticket.svg index d0d7c4374f..be0c05b512 100644 --- a/symbols/shop/ticket.svg +++ b/symbols/shop/ticket.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/symbols/shop/tobacco.svg b/symbols/shop/tobacco.svg index 21c9d979ae..b24a54fc13 100644 --- a/symbols/shop/tobacco.svg +++ b/symbols/shop/tobacco.svg @@ -1,31 +1,4 @@ - -image/svg+xml - - + + + + diff --git a/symbols/shop/toys.svg b/symbols/shop/toys.svg index ede94cae98..d28e53ce5e 100644 --- a/symbols/shop/toys.svg +++ b/symbols/shop/toys.svg @@ -1,30 +1,4 @@ - - - -image/svg+xml - - + + + + diff --git a/symbols/shop/trade.svg b/symbols/shop/trade.svg index beaa8ced4e..4388674a91 100644 --- a/symbols/shop/trade.svg +++ b/symbols/shop/trade.svg @@ -1,31 +1,4 @@ - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/shop/travel_agency.svg b/symbols/shop/travel_agency.svg index 3e2e74b06e..e708f4a002 100644 --- a/symbols/shop/travel_agency.svg +++ b/symbols/shop/travel_agency.svg @@ -1,40 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/tyres.svg b/symbols/shop/tyres.svg index c3426d0f1d..35b6558a2e 100644 --- a/symbols/shop/tyres.svg +++ b/symbols/shop/tyres.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/shop/variety_store.svg b/symbols/shop/variety_store.svg index 13868643d3..736a8b582c 100644 --- a/symbols/shop/variety_store.svg +++ b/symbols/shop/variety_store.svg @@ -1,37 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/shop/video.svg b/symbols/shop/video.svg index de379c7584..6462b5e2e9 100644 --- a/symbols/shop/video.svg +++ b/symbols/shop/video.svg @@ -1,66 +1,4 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/symbols/shop/video_games.svg b/symbols/shop/video_games.svg index e03897c403..62462efa34 100644 --- a/symbols/shop/video_games.svg +++ b/symbols/shop/video_games.svg @@ -1,26 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - + + + + From eaacb92dd50ee348751ee328246e080f96a1e9d5 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Thu, 26 Aug 2021 10:28:01 +0200 Subject: [PATCH 25/55] Clean tourism symbols --- symbols/tourism/alpinehut.svg | 40 ++------------ symbols/tourism/apartment.svg | 50 +++-------------- symbols/tourism/artwork.svg | 41 ++------------ symbols/tourism/audioguide.svg | 33 ++---------- symbols/tourism/board.svg | 33 ++---------- symbols/tourism/camping.svg | 22 ++------ symbols/tourism/caravan_park.svg | 16 ++---- symbols/tourism/chalet.svg | 38 ++----------- symbols/tourism/guest_house.svg | 37 ++----------- symbols/tourism/guidepost.svg | 42 ++------------- symbols/tourism/hostel.svg | 86 ++---------------------------- symbols/tourism/hotel.svg | 39 ++------------ symbols/tourism/map.svg | 33 ++---------- symbols/tourism/motel.svg | 39 ++------------ symbols/tourism/museum.svg | 22 ++------ symbols/tourism/office.svg | 33 ++---------- symbols/tourism/picnic.svg | 23 ++------ symbols/tourism/terminal.svg | 41 ++------------ symbols/tourism/viewpoint.svg | 16 ++---- symbols/tourism/wilderness_hut.svg | 39 ++------------ 20 files changed, 66 insertions(+), 657 deletions(-) diff --git a/symbols/tourism/alpinehut.svg b/symbols/tourism/alpinehut.svg index 5f3f22dc67..5085544e18 100644 --- a/symbols/tourism/alpinehut.svg +++ b/symbols/tourism/alpinehut.svg @@ -1,38 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/apartment.svg b/symbols/tourism/apartment.svg index c5b6e7c8fb..becd3963f6 100644 --- a/symbols/tourism/apartment.svg +++ b/symbols/tourism/apartment.svg @@ -1,44 +1,6 @@ - -image/svg+xml - - - - - \ No newline at end of file + + + + + + diff --git a/symbols/tourism/artwork.svg b/symbols/tourism/artwork.svg index 433e792b9b..a0cee1ef6c 100644 --- a/symbols/tourism/artwork.svg +++ b/symbols/tourism/artwork.svg @@ -1,39 +1,4 @@ - - - - - - - image/svg+xml - - - - - - - - - - + + + diff --git a/symbols/tourism/audioguide.svg b/symbols/tourism/audioguide.svg index 6901fb91ab..54dbf01320 100644 --- a/symbols/tourism/audioguide.svg +++ b/symbols/tourism/audioguide.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/tourism/board.svg b/symbols/tourism/board.svg index 7027ff9dc9..3f6eda2d86 100644 --- a/symbols/tourism/board.svg +++ b/symbols/tourism/board.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/tourism/camping.svg b/symbols/tourism/camping.svg index 21bf7c986f..5285abfc07 100644 --- a/symbols/tourism/camping.svg +++ b/symbols/tourism/camping.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/tourism/caravan_park.svg b/symbols/tourism/caravan_park.svg index c581e26180..f154a8d473 100644 --- a/symbols/tourism/caravan_park.svg +++ b/symbols/tourism/caravan_park.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/chalet.svg b/symbols/tourism/chalet.svg index e5c1905cf9..97b0f4f949 100644 --- a/symbols/tourism/chalet.svg +++ b/symbols/tourism/chalet.svg @@ -1,35 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - + + + + diff --git a/symbols/tourism/guest_house.svg b/symbols/tourism/guest_house.svg index 969ce55488..d90a625412 100644 --- a/symbols/tourism/guest_house.svg +++ b/symbols/tourism/guest_house.svg @@ -1,34 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - + + + + diff --git a/symbols/tourism/guidepost.svg b/symbols/tourism/guidepost.svg index 918a90ba9b..9d1dedfa97 100644 --- a/symbols/tourism/guidepost.svg +++ b/symbols/tourism/guidepost.svg @@ -1,40 +1,4 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/hostel.svg b/symbols/tourism/hostel.svg index a505984e04..e29a71b245 100644 --- a/symbols/tourism/hostel.svg +++ b/symbols/tourism/hostel.svg @@ -1,83 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + diff --git a/symbols/tourism/hotel.svg b/symbols/tourism/hotel.svg index 3fa42b1e9c..e9696fdd7b 100644 --- a/symbols/tourism/hotel.svg +++ b/symbols/tourism/hotel.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/map.svg b/symbols/tourism/map.svg index 4837349f0f..a56a44f7bd 100644 --- a/symbols/tourism/map.svg +++ b/symbols/tourism/map.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/tourism/motel.svg b/symbols/tourism/motel.svg index 378cb72a67..be8095d0e7 100644 --- a/symbols/tourism/motel.svg +++ b/symbols/tourism/motel.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/museum.svg b/symbols/tourism/museum.svg index fd19661d91..52877a8e84 100644 --- a/symbols/tourism/museum.svg +++ b/symbols/tourism/museum.svg @@ -1,20 +1,4 @@ - - - - - - + + + diff --git a/symbols/tourism/office.svg b/symbols/tourism/office.svg index bf94d6e731..312cc3ca56 100644 --- a/symbols/tourism/office.svg +++ b/symbols/tourism/office.svg @@ -1,31 +1,4 @@ - - - - - - image/svg+xml - - - - - - - + + + diff --git a/symbols/tourism/picnic.svg b/symbols/tourism/picnic.svg index 36556d520a..7c25022f7c 100644 --- a/symbols/tourism/picnic.svg +++ b/symbols/tourism/picnic.svg @@ -1,21 +1,4 @@ - - - - - - + + + diff --git a/symbols/tourism/terminal.svg b/symbols/tourism/terminal.svg index 396337d69d..c8af583889 100644 --- a/symbols/tourism/terminal.svg +++ b/symbols/tourism/terminal.svg @@ -1,39 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - - + + + diff --git a/symbols/tourism/viewpoint.svg b/symbols/tourism/viewpoint.svg index 32ca9e6db6..c9f1dfea06 100644 --- a/symbols/tourism/viewpoint.svg +++ b/symbols/tourism/viewpoint.svg @@ -1,14 +1,4 @@ - - - - - image/svg+xml - - - - - - - - + + + diff --git a/symbols/tourism/wilderness_hut.svg b/symbols/tourism/wilderness_hut.svg index 6ae10e95b0..2f966a6df8 100644 --- a/symbols/tourism/wilderness_hut.svg +++ b/symbols/tourism/wilderness_hut.svg @@ -1,37 +1,4 @@ - - - - - - image/svg+xml - - - - - - - - + + + From 615c40e9a043b3e9fcf4fd7b31527574238ad141 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Wed, 25 Aug 2021 07:12:40 +0200 Subject: [PATCH 26/55] Clean symbols not in dir --- style/amenity-points.mss | 20 ++++---- style/stations.mss | 2 +- symbols/advertising_column.svg | 10 ---- symbols/aerodrome.12.svg | 5 -- symbols/amenity/advertising_column.svg | 6 +++ symbols/amenity/aerodrome.svg | 4 ++ symbols/amenity/entrance.svg | 4 ++ symbols/amenity/helipad.svg | 4 ++ symbols/arete-mid.svg | 29 ++--------- symbols/arete2.svg | 39 ++------------- symbols/barrier/level_crossing.svg | 5 ++ symbols/barrier/level_crossing2.svg | 5 ++ symbols/bunker.svg | 38 -------------- symbols/cliff.svg | 41 ++-------------- symbols/cliff2.svg | 42 ++-------------- symbols/corners.svg | 2 +- symbols/embankment.svg | 41 ++-------------- symbols/entrance.10.svg | 40 --------------- symbols/generator_wind.svg | 38 -------------- symbols/helipad.16.svg | 11 ----- symbols/level_crossing.svg | 11 ----- symbols/level_crossing2.svg | 11 ----- symbols/man_made/bunker.svg | 4 ++ symbols/man_made/generator_wind.svg | 4 ++ symbols/motorcycle.svg | 36 -------------- symbols/natural/spring.svg | 5 ++ symbols/natural/waterfall.svg | 4 ++ symbols/oneway-reverse.svg | 34 ++----------- symbols/oneway.svg | 34 ++----------- symbols/rect.svg | 2 +- symbols/rectdiag.svg | 2 +- symbols/ridge-mid.svg | 68 ++------------------------ symbols/ridge2.svg | 42 ++-------------- symbols/shop/motorcycle.svg | 4 ++ symbols/spring.svg | 23 --------- symbols/square.svg | 10 ++-- symbols/waterfall.svg | 4 -- 37 files changed, 100 insertions(+), 584 deletions(-) delete mode 100644 symbols/advertising_column.svg delete mode 100644 symbols/aerodrome.12.svg create mode 100644 symbols/amenity/advertising_column.svg create mode 100644 symbols/amenity/aerodrome.svg create mode 100644 symbols/amenity/entrance.svg create mode 100644 symbols/amenity/helipad.svg create mode 100644 symbols/barrier/level_crossing.svg create mode 100644 symbols/barrier/level_crossing2.svg delete mode 100644 symbols/bunker.svg delete mode 100644 symbols/entrance.10.svg delete mode 100644 symbols/generator_wind.svg delete mode 100644 symbols/helipad.16.svg delete mode 100644 symbols/level_crossing.svg delete mode 100644 symbols/level_crossing2.svg create mode 100644 symbols/man_made/bunker.svg create mode 100644 symbols/man_made/generator_wind.svg delete mode 100644 symbols/motorcycle.svg create mode 100644 symbols/natural/spring.svg create mode 100644 symbols/natural/waterfall.svg create mode 100644 symbols/shop/motorcycle.svg delete mode 100644 symbols/spring.svg delete mode 100644 symbols/waterfall.svg diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 69548dfa4e..d38bc2503a 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1100,7 +1100,7 @@ } [shop = 'motorcycle'][zoom >= 18] { - marker-file: url('symbols/motorcycle.svg'); + marker-file: url('symbols/shop/motorcycle.svg'); } [shop = 'music'][zoom >= 18] { @@ -1183,7 +1183,7 @@ } [feature = 'advertising_column'][zoom >= 19]{ - marker-file: url('symbols/advertising_column.svg'); + marker-file: url('symbols/amenity/advertising_column.svg'); marker-fill: @advertising-grey; marker-clip: false; } @@ -1336,7 +1336,7 @@ } [feature = 'aeroway_helipad'][zoom >= 16] { - marker-file: url('symbols/helipad.16.svg'); + marker-file: url('symbols/amenity/helipad.svg'); marker-clip: false; marker-fill: @airtransport; } @@ -1347,7 +1347,7 @@ [feature = 'aeroway_aerodrome']['iata' = null][zoom >= 12][zoom < 18] { [way_pixels <= 192000], [way_pixels = null] { - marker-file: url('symbols/aerodrome.12.svg'); + marker-file: url('symbols/amenity/aerodrome.svg'); marker-clip: false; marker-fill: @airtransport; } @@ -1384,7 +1384,7 @@ } [feature = 'natural_spring'][zoom >= 14] { - marker-file: url('symbols/spring.svg'); + marker-file: url('symbols/natural/spring.svg'); marker-clip: false; } @@ -1398,14 +1398,14 @@ [zoom >= 14][height > 10], [zoom >= 15][name != null], [zoom >= 16] { - marker-file: url('symbols/waterfall.svg'); + marker-file: url('symbols/natural/waterfall.svg'); marker-clip: false; marker-fill: @water-text; } } [feature = 'military_bunker'][zoom >= 17] { - marker-file: url('symbols/bunker.svg'); + marker-file: url('symbols/man_made/bunker.svg'); marker-fill: @man-made-icon; marker-clip: false; } @@ -1414,7 +1414,7 @@ [zoom >= 15][location != 'rooftop'][location != 'roof'], [zoom >= 15][location = null], [zoom >= 19] { - marker-file: url('symbols/generator_wind.svg'); + marker-file: url('symbols/man_made/generator_wind.svg'); marker-fill: @man-made-icon; marker-clip: false; } @@ -1481,9 +1481,9 @@ [feature = 'railway_level_crossing'][zoom >= 14]::railway, [feature = 'railway_crossing'][zoom >= 15]::railway{ - marker-file: url('symbols/level_crossing.svg'); + marker-file: url('symbols/barrier/level_crossing.svg'); [zoom >= 16] { - marker-file: url('symbols/level_crossing2.svg'); + marker-file: url('symbols/barrier/level_crossing2.svg'); } } diff --git a/style/stations.mss b/style/stations.mss index 47d7fe9ab6..4f2f48b859 100644 --- a/style/stations.mss +++ b/style/stations.mss @@ -3,7 +3,7 @@ #stations { [railway = 'subway_entrance'][zoom >= 18] { - marker-file: url('symbols/entrance.10.svg'); + marker-file: url('symbols/amenity/entrance.svg'); marker-fill: @transportation-icon; marker-clip: false; [zoom >= 19] { diff --git a/symbols/advertising_column.svg b/symbols/advertising_column.svg deleted file mode 100644 index 4c0c3e3267..0000000000 --- a/symbols/advertising_column.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/symbols/aerodrome.12.svg b/symbols/aerodrome.12.svg deleted file mode 100644 index 3eb6309181..0000000000 --- a/symbols/aerodrome.12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/symbols/amenity/advertising_column.svg b/symbols/amenity/advertising_column.svg new file mode 100644 index 0000000000..b723a2d220 --- /dev/null +++ b/symbols/amenity/advertising_column.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/symbols/amenity/aerodrome.svg b/symbols/amenity/aerodrome.svg new file mode 100644 index 0000000000..d67a15b030 --- /dev/null +++ b/symbols/amenity/aerodrome.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/amenity/entrance.svg b/symbols/amenity/entrance.svg new file mode 100644 index 0000000000..8ac1cda50b --- /dev/null +++ b/symbols/amenity/entrance.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/amenity/helipad.svg b/symbols/amenity/helipad.svg new file mode 100644 index 0000000000..ae968dc1d0 --- /dev/null +++ b/symbols/amenity/helipad.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/arete-mid.svg b/symbols/arete-mid.svg index a23d320fbd..bf2ccb3eab 100644 --- a/symbols/arete-mid.svg +++ b/symbols/arete-mid.svg @@ -1,26 +1,5 @@ - - - - - + + + + diff --git a/symbols/arete2.svg b/symbols/arete2.svg index 6b95f600bf..159a7334ce 100644 --- a/symbols/arete2.svg +++ b/symbols/arete2.svg @@ -1,36 +1,5 @@ - - - - - - Created with Snap - + + + + diff --git a/symbols/barrier/level_crossing.svg b/symbols/barrier/level_crossing.svg new file mode 100644 index 0000000000..2cc24d637b --- /dev/null +++ b/symbols/barrier/level_crossing.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/symbols/barrier/level_crossing2.svg b/symbols/barrier/level_crossing2.svg new file mode 100644 index 0000000000..f788f85099 --- /dev/null +++ b/symbols/barrier/level_crossing2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/symbols/bunker.svg b/symbols/bunker.svg deleted file mode 100644 index f08f048e6b..0000000000 --- a/symbols/bunker.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/symbols/cliff.svg b/symbols/cliff.svg index 55b6c8d610..d35b522e0b 100644 --- a/symbols/cliff.svg +++ b/symbols/cliff.svg @@ -1,38 +1,5 @@ - - - - - - - image/svg+xml - - - - - - - - - + + + + diff --git a/symbols/cliff2.svg b/symbols/cliff2.svg index 5e5e067b69..0c479a7f57 100644 --- a/symbols/cliff2.svg +++ b/symbols/cliff2.svg @@ -1,39 +1,5 @@ - - - - - - - image/svg+xml - - - - - - - - - + + + + diff --git a/symbols/corners.svg b/symbols/corners.svg index 5a7686ad4b..55b1bae2e1 100644 --- a/symbols/corners.svg +++ b/symbols/corners.svg @@ -1,5 +1,5 @@ - + - - - - - - image/svg+xml - - - - - - - - - + + + + diff --git a/symbols/entrance.10.svg b/symbols/entrance.10.svg deleted file mode 100644 index e8d3cfb14e..0000000000 --- a/symbols/entrance.10.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/symbols/generator_wind.svg b/symbols/generator_wind.svg deleted file mode 100644 index d08094dfad..0000000000 --- a/symbols/generator_wind.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/symbols/helipad.16.svg b/symbols/helipad.16.svg deleted file mode 100644 index 97e13e293c..0000000000 --- a/symbols/helipad.16.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/symbols/level_crossing.svg b/symbols/level_crossing.svg deleted file mode 100644 index 38cd9b3a59..0000000000 --- a/symbols/level_crossing.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/symbols/level_crossing2.svg b/symbols/level_crossing2.svg deleted file mode 100644 index 5b82a44022..0000000000 --- a/symbols/level_crossing2.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/symbols/man_made/bunker.svg b/symbols/man_made/bunker.svg new file mode 100644 index 0000000000..7851863942 --- /dev/null +++ b/symbols/man_made/bunker.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/man_made/generator_wind.svg b/symbols/man_made/generator_wind.svg new file mode 100644 index 0000000000..d45763edc0 --- /dev/null +++ b/symbols/man_made/generator_wind.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/motorcycle.svg b/symbols/motorcycle.svg deleted file mode 100644 index c1fd0bf139..0000000000 --- a/symbols/motorcycle.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/symbols/natural/spring.svg b/symbols/natural/spring.svg new file mode 100644 index 0000000000..c1a7f33160 --- /dev/null +++ b/symbols/natural/spring.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/symbols/natural/waterfall.svg b/symbols/natural/waterfall.svg new file mode 100644 index 0000000000..2430591009 --- /dev/null +++ b/symbols/natural/waterfall.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/oneway-reverse.svg b/symbols/oneway-reverse.svg index 7838527fa0..386237bdf9 100644 --- a/symbols/oneway-reverse.svg +++ b/symbols/oneway-reverse.svg @@ -1,32 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/oneway.svg b/symbols/oneway.svg index 1a37cca405..5d01ee1109 100644 --- a/symbols/oneway.svg +++ b/symbols/oneway.svg @@ -1,32 +1,4 @@ - - - - - - - - - image/svg+xml - - - - - - + + + diff --git a/symbols/rect.svg b/symbols/rect.svg index 3884a67fc4..fa85177809 100644 --- a/symbols/rect.svg +++ b/symbols/rect.svg @@ -1,4 +1,4 @@ - + diff --git a/symbols/rectdiag.svg b/symbols/rectdiag.svg index 648cc77f4e..14b91a3a85 100644 --- a/symbols/rectdiag.svg +++ b/symbols/rectdiag.svg @@ -1,4 +1,4 @@ - + diff --git a/symbols/ridge-mid.svg b/symbols/ridge-mid.svg index 7d94f14a4e..b889af5082 100644 --- a/symbols/ridge-mid.svg +++ b/symbols/ridge-mid.svg @@ -1,65 +1,5 @@ - - - - - - - image/svg+xml - - - - - - - - - Created with Snap + + + + diff --git a/symbols/ridge2.svg b/symbols/ridge2.svg index 417a61d1c1..a0c21f2453 100644 --- a/symbols/ridge2.svg +++ b/symbols/ridge2.svg @@ -1,39 +1,5 @@ - - - - - - image/svg+xml - - - - - - - - - Created with Snap + + + + diff --git a/symbols/shop/motorcycle.svg b/symbols/shop/motorcycle.svg new file mode 100644 index 0000000000..26600456a6 --- /dev/null +++ b/symbols/shop/motorcycle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/symbols/spring.svg b/symbols/spring.svg deleted file mode 100644 index 47644c0c44..0000000000 --- a/symbols/spring.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - diff --git a/symbols/square.svg b/symbols/square.svg index e65463942a..afec5690cb 100644 --- a/symbols/square.svg +++ b/symbols/square.svg @@ -1,8 +1,4 @@ - - - - + + + diff --git a/symbols/waterfall.svg b/symbols/waterfall.svg deleted file mode 100644 index db6b6be8d9..0000000000 --- a/symbols/waterfall.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - From 7776e744c26c0458ae980cd4d49444881cef4194 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Thu, 26 Aug 2021 15:35:02 +0200 Subject: [PATCH 27/55] Remove strokes from sauna --- symbols/leisure/sauna.svg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symbols/leisure/sauna.svg b/symbols/leisure/sauna.svg index 1b964ef34c..6fc82e264e 100644 --- a/symbols/leisure/sauna.svg +++ b/symbols/leisure/sauna.svg @@ -1,8 +1,8 @@ - - + + From da15d578e919dee36189b51b47e8ad306b321c07 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Thu, 26 Aug 2021 15:35:46 +0200 Subject: [PATCH 28/55] Set spring color in style --- style/amenity-points.mss | 1 + symbols/natural/spring.svg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index d38bc2503a..5ff70cb59f 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1385,6 +1385,7 @@ [feature = 'natural_spring'][zoom >= 14] { marker-file: url('symbols/natural/spring.svg'); + marker-fill: #7abcec; marker-clip: false; } diff --git a/symbols/natural/spring.svg b/symbols/natural/spring.svg index c1a7f33160..7847153c20 100644 --- a/symbols/natural/spring.svg +++ b/symbols/natural/spring.svg @@ -1,5 +1,5 @@ - + From c94f9be07bc4d849495d39fcbc037fb8c5dd2a96 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Thu, 26 Aug 2021 16:18:10 +0200 Subject: [PATCH 29/55] Set level_crossing color in style --- style/amenity-points.mss | 2 ++ symbols/barrier/level_crossing.svg | 4 ++-- symbols/barrier/level_crossing2.svg | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 5ff70cb59f..73bf4b1238 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1483,6 +1483,8 @@ [feature = 'railway_level_crossing'][zoom >= 14]::railway, [feature = 'railway_crossing'][zoom >= 15]::railway{ marker-file: url('symbols/barrier/level_crossing.svg'); + marker-fill: #4d4d4d; + marker-clip: false; [zoom >= 16] { marker-file: url('symbols/barrier/level_crossing2.svg'); } diff --git a/symbols/barrier/level_crossing.svg b/symbols/barrier/level_crossing.svg index 2cc24d637b..609c49e665 100644 --- a/symbols/barrier/level_crossing.svg +++ b/symbols/barrier/level_crossing.svg @@ -1,5 +1,5 @@ - - + + diff --git a/symbols/barrier/level_crossing2.svg b/symbols/barrier/level_crossing2.svg index f788f85099..44a22406fc 100644 --- a/symbols/barrier/level_crossing2.svg +++ b/symbols/barrier/level_crossing2.svg @@ -1,5 +1,5 @@ - - + + From 40820143374b5550fb294cfc754db8ca662094b0 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Sat, 11 Sep 2021 13:22:48 +0200 Subject: [PATCH 30/55] Remove xml declaration from svg symbols --- symbols/amenity/advertising_column.svg | 1 - symbols/amenity/aerodrome.svg | 1 - symbols/amenity/arts_centre.svg | 1 - symbols/amenity/atm.svg | 1 - symbols/amenity/bank.svg | 1 - symbols/amenity/bar.svg | 1 - symbols/amenity/bbq.svg | 1 - symbols/amenity/bench.svg | 1 - symbols/amenity/bicycle_parking.svg | 1 - symbols/amenity/bicycle_repair_station.svg | 1 - symbols/amenity/biergarten.svg | 1 - symbols/amenity/boat_rental.svg | 1 - symbols/amenity/bureau_de_change.svg | 1 - symbols/amenity/bus_station.svg | 1 - symbols/amenity/cafe.svg | 1 - symbols/amenity/car_wash.svg | 1 - symbols/amenity/casino.svg | 1 - symbols/amenity/charging_station.svg | 1 - symbols/amenity/cinema.svg | 1 - symbols/amenity/community_centre.svg | 1 - symbols/amenity/courthouse.svg | 1 - symbols/amenity/dentist.svg | 1 - symbols/amenity/doctors.svg | 1 - symbols/amenity/drinking_water.svg | 1 - symbols/amenity/emergency_phone.svg | 1 - symbols/amenity/entrance.svg | 1 - symbols/amenity/excrement_bags.svg | 1 - symbols/amenity/fast_food.svg | 1 - symbols/amenity/ferry.svg | 1 - symbols/amenity/firestation.svg | 1 - symbols/amenity/fountain.svg | 1 - symbols/amenity/fuel.svg | 1 - symbols/amenity/helipad.svg | 1 - symbols/amenity/hospital.svg | 1 - symbols/amenity/hunting_stand.svg | 1 - symbols/amenity/ice_cream.svg | 1 - symbols/amenity/internet_cafe.svg | 1 - symbols/amenity/library.svg | 1 - symbols/amenity/motorcycle_parking.svg | 1 - symbols/amenity/nightclub.svg | 1 - symbols/amenity/parking.svg | 1 - symbols/amenity/parking_entrance_multistorey.svg | 1 - symbols/amenity/parking_entrance_underground.svg | 1 - symbols/amenity/parking_subtle.svg | 1 - symbols/amenity/parking_tickets.svg | 1 - symbols/amenity/pharmacy.svg | 1 - symbols/amenity/place_of_worship.svg | 1 - symbols/amenity/police.svg | 1 - symbols/amenity/post_box.svg | 1 - symbols/amenity/post_office.svg | 1 - symbols/amenity/prison.svg | 1 - symbols/amenity/pub.svg | 1 - symbols/amenity/public_bath.svg | 1 - symbols/amenity/public_bookcase.svg | 1 - symbols/amenity/public_transport_tickets.svg | 1 - symbols/amenity/recycling.svg | 1 - symbols/amenity/rental_bicycle.svg | 1 - symbols/amenity/rental_car.svg | 1 - symbols/amenity/restaurant.svg | 1 - symbols/amenity/shelter.svg | 1 - symbols/amenity/shower.svg | 1 - symbols/amenity/social_facility.svg | 1 - symbols/amenity/taxi.svg | 1 - symbols/amenity/telephone.svg | 1 - symbols/amenity/theatre.svg | 1 - symbols/amenity/toilets.svg | 1 - symbols/amenity/town_hall.svg | 1 - symbols/amenity/vehicle_inspection.svg | 1 - symbols/amenity/veterinary.svg | 1 - symbols/amenity/waste_basket.svg | 1 - symbols/amenity/waste_disposal.svg | 1 - symbols/arete-mid.svg | 1 - symbols/arete2.svg | 1 - symbols/barrier/cattle_grid.svg | 1 - symbols/barrier/cycle_barrier.svg | 1 - symbols/barrier/full-height_turnstile.svg | 1 - symbols/barrier/gate.svg | 1 - symbols/barrier/kissing_gate.svg | 1 - symbols/barrier/level_crossing.svg | 1 - symbols/barrier/level_crossing2.svg | 1 - symbols/barrier/lift_gate.svg | 1 - symbols/barrier/motorcycle_barrier.svg | 1 - symbols/barrier/stile.svg | 1 - symbols/barrier/toll_booth.svg | 1 - symbols/cliff.svg | 1 - symbols/cliff2.svg | 1 - symbols/corners.svg | 1 - symbols/embankment.svg | 1 - symbols/highway/bus_stop.svg | 1 - symbols/highway/elevator.svg | 1 - symbols/highway/ford.svg | 1 - symbols/highway/traffic_light.svg | 1 - symbols/historic/archaeological_site.svg | 1 - symbols/historic/bust.svg | 1 - symbols/historic/castle.svg | 1 - symbols/historic/city_gate.svg | 1 - symbols/historic/fort.svg | 1 - symbols/historic/fortress.svg | 1 - symbols/historic/manor.svg | 1 - symbols/historic/memorial.svg | 1 - symbols/historic/monument.svg | 1 - symbols/historic/obelisk.svg | 1 - symbols/historic/palace.svg | 1 - symbols/historic/plaque.svg | 1 - symbols/historic/shrine.svg | 1 - symbols/historic/statue.svg | 1 - symbols/historic/stone.svg | 1 - symbols/leisure/amusement_arcade.svg | 1 - symbols/leisure/beach_resort.svg | 1 - symbols/leisure/bird_hide.svg | 1 - symbols/leisure/bowling_alley.svg | 1 - symbols/leisure/firepit.svg | 1 - symbols/leisure/fishing.svg | 1 - symbols/leisure/fitness.svg | 1 - symbols/leisure/golf.svg | 1 - symbols/leisure/miniature_golf.svg | 1 - symbols/leisure/outdoor_seating.svg | 1 - symbols/leisure/playground.svg | 1 - symbols/leisure/sauna.svg | 1 - symbols/leisure/slipway.svg | 1 - symbols/leisure/water_park.svg | 1 - symbols/man_made/bell_tower.svg | 1 - symbols/man_made/bunker.svg | 1 - symbols/man_made/chimney.svg | 1 - symbols/man_made/communications_tower.svg | 1 - symbols/man_made/crane.svg | 1 - symbols/man_made/cross.svg | 1 - symbols/man_made/generator_wind.svg | 1 - symbols/man_made/lighthouse.svg | 1 - symbols/man_made/mast.svg | 1 - symbols/man_made/mast_communications.svg | 1 - symbols/man_made/mast_lighting.svg | 1 - symbols/man_made/power_tower.svg | 1 - symbols/man_made/power_tower_small.svg | 1 - symbols/man_made/storage_tank.svg | 1 - symbols/man_made/telescope_dish.svg | 1 - symbols/man_made/telescope_dome.svg | 1 - symbols/man_made/tower_cantilever_communication.svg | 1 - symbols/man_made/tower_cooling.svg | 1 - symbols/man_made/tower_defensive.svg | 1 - symbols/man_made/tower_dish.svg | 1 - symbols/man_made/tower_dome.svg | 1 - symbols/man_made/tower_generic.svg | 1 - symbols/man_made/tower_lattice.svg | 1 - symbols/man_made/tower_lattice_communication.svg | 1 - symbols/man_made/tower_lattice_lighting.svg | 1 - symbols/man_made/tower_lighting.svg | 1 - symbols/man_made/tower_observation.svg | 1 - symbols/man_made/water_tower.svg | 1 - symbols/man_made/windmill.svg | 1 - symbols/natural/cave.svg | 1 - symbols/natural/peak.svg | 1 - symbols/natural/saddle.svg | 1 - symbols/natural/spring.svg | 1 - symbols/natural/waterfall.svg | 1 - symbols/office/consulate.svg | 1 - symbols/office/embassy.svg | 1 - symbols/oneway-reverse.svg | 1 - symbols/oneway.svg | 1 - symbols/place/place-4-z7.svg | 1 - symbols/place/place-4.svg | 1 - symbols/place/place-6-z7.svg | 1 - symbols/place/place-6.svg | 1 - symbols/place/place-capital-6.svg | 1 - symbols/place/place-capital-8.svg | 1 - symbols/rect.svg | 1 - symbols/rectdiag.svg | 1 - symbols/religion/buddhist.svg | 1 - symbols/religion/christian.svg | 1 - symbols/religion/hinduist.svg | 1 - symbols/religion/jewish.svg | 1 - symbols/religion/muslim.svg | 1 - symbols/religion/shintoist.svg | 1 - symbols/religion/sikhist.svg | 1 - symbols/religion/taoist.svg | 1 - symbols/ridge-mid.svg | 1 - symbols/ridge2.svg | 1 - symbols/shop/alcohol.svg | 1 - symbols/shop/art.svg | 1 - symbols/shop/bag.svg | 1 - symbols/shop/bakery.svg | 1 - symbols/shop/beauty.svg | 1 - symbols/shop/bed.svg | 1 - symbols/shop/beverages.svg | 1 - symbols/shop/bicycle.svg | 1 - symbols/shop/bookmaker.svg | 1 - symbols/shop/butcher.svg | 1 - symbols/shop/car.svg | 1 - symbols/shop/car_parts.svg | 1 - symbols/shop/car_repair.svg | 1 - symbols/shop/carpet.svg | 1 - symbols/shop/charity.svg | 1 - symbols/shop/chemist.svg | 1 - symbols/shop/clothes.svg | 1 - symbols/shop/coffee.svg | 1 - symbols/shop/computer.svg | 1 - symbols/shop/confectionery.svg | 1 - symbols/shop/convenience.svg | 1 - symbols/shop/copyshop.svg | 1 - symbols/shop/dairy.svg | 1 - symbols/shop/deli.svg | 1 - symbols/shop/department_store.svg | 1 - symbols/shop/diy.svg | 1 - symbols/shop/electronics.svg | 1 - symbols/shop/fabric.svg | 1 - symbols/shop/florist.svg | 1 - symbols/shop/furniture.svg | 1 - symbols/shop/garden_centre.svg | 1 - symbols/shop/gift.svg | 1 - symbols/shop/greengrocer.svg | 1 - symbols/shop/hairdresser.svg | 1 - symbols/shop/hifi.svg | 1 - symbols/shop/houseware.svg | 1 - symbols/shop/interior_decoration.svg | 1 - symbols/shop/jewelry.svg | 1 - symbols/shop/laundry.svg | 1 - symbols/shop/marketplace.svg | 1 - symbols/shop/massage.svg | 1 - symbols/shop/medical_supply.svg | 1 - symbols/shop/mobile_phone.svg | 1 - symbols/shop/motorcycle.svg | 1 - symbols/shop/music.svg | 1 - symbols/shop/musical_instrument.svg | 1 - symbols/shop/newsagent.svg | 1 - symbols/shop/optician.svg | 1 - symbols/shop/outdoor.svg | 1 - symbols/shop/paint.svg | 1 - symbols/shop/perfumery.svg | 1 - symbols/shop/pet.svg | 1 - symbols/shop/photo.svg | 1 - symbols/shop/seafood.svg | 1 - symbols/shop/second_hand.svg | 1 - symbols/shop/shoes.svg | 1 - symbols/shop/sports.svg | 1 - symbols/shop/stationery.svg | 1 - symbols/shop/supermarket.svg | 1 - symbols/shop/tea.svg | 1 - symbols/shop/ticket.svg | 1 - symbols/shop/tobacco.svg | 1 - symbols/shop/toys.svg | 1 - symbols/shop/trade.svg | 1 - symbols/shop/travel_agency.svg | 1 - symbols/shop/tyres.svg | 1 - symbols/shop/variety_store.svg | 1 - symbols/shop/video.svg | 1 - symbols/shop/video_games.svg | 1 - symbols/square.svg | 1 - symbols/tourism/alpinehut.svg | 1 - symbols/tourism/apartment.svg | 1 - symbols/tourism/artwork.svg | 1 - symbols/tourism/audioguide.svg | 1 - symbols/tourism/board.svg | 1 - symbols/tourism/camping.svg | 1 - symbols/tourism/caravan_park.svg | 1 - symbols/tourism/chalet.svg | 1 - symbols/tourism/guest_house.svg | 1 - symbols/tourism/guidepost.svg | 1 - symbols/tourism/hostel.svg | 1 - symbols/tourism/hotel.svg | 1 - symbols/tourism/map.svg | 1 - symbols/tourism/motel.svg | 1 - symbols/tourism/museum.svg | 1 - symbols/tourism/office.svg | 1 - symbols/tourism/picnic.svg | 1 - symbols/tourism/terminal.svg | 1 - symbols/tourism/viewpoint.svg | 1 - symbols/tourism/wilderness_hut.svg | 1 - 267 files changed, 267 deletions(-) diff --git a/symbols/amenity/advertising_column.svg b/symbols/amenity/advertising_column.svg index b723a2d220..85aa5f78e1 100644 --- a/symbols/amenity/advertising_column.svg +++ b/symbols/amenity/advertising_column.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/aerodrome.svg b/symbols/amenity/aerodrome.svg index d67a15b030..dd2f169665 100644 --- a/symbols/amenity/aerodrome.svg +++ b/symbols/amenity/aerodrome.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/arts_centre.svg b/symbols/amenity/arts_centre.svg index 45fff14bfe..ddff0d68af 100644 --- a/symbols/amenity/arts_centre.svg +++ b/symbols/amenity/arts_centre.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/atm.svg b/symbols/amenity/atm.svg index 54113a2002..8923a9c847 100644 --- a/symbols/amenity/atm.svg +++ b/symbols/amenity/atm.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bank.svg b/symbols/amenity/bank.svg index 56e05621d2..5735c308b0 100644 --- a/symbols/amenity/bank.svg +++ b/symbols/amenity/bank.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bar.svg b/symbols/amenity/bar.svg index 4e13f8e0ed..030eb3cdf6 100644 --- a/symbols/amenity/bar.svg +++ b/symbols/amenity/bar.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bbq.svg b/symbols/amenity/bbq.svg index 5401f84374..0e6dd806e8 100644 --- a/symbols/amenity/bbq.svg +++ b/symbols/amenity/bbq.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bench.svg b/symbols/amenity/bench.svg index 8e67d15d9f..698c2782fd 100644 --- a/symbols/amenity/bench.svg +++ b/symbols/amenity/bench.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bicycle_parking.svg b/symbols/amenity/bicycle_parking.svg index f1c6baab18..34472ae498 100644 --- a/symbols/amenity/bicycle_parking.svg +++ b/symbols/amenity/bicycle_parking.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bicycle_repair_station.svg b/symbols/amenity/bicycle_repair_station.svg index 0feb87e5d3..77254d6de8 100644 --- a/symbols/amenity/bicycle_repair_station.svg +++ b/symbols/amenity/bicycle_repair_station.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/biergarten.svg b/symbols/amenity/biergarten.svg index 39168a3cf0..5f7a01ff60 100644 --- a/symbols/amenity/biergarten.svg +++ b/symbols/amenity/biergarten.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/boat_rental.svg b/symbols/amenity/boat_rental.svg index 65a6983e5d..c36025a738 100644 --- a/symbols/amenity/boat_rental.svg +++ b/symbols/amenity/boat_rental.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bureau_de_change.svg b/symbols/amenity/bureau_de_change.svg index a789f45bba..b2dd8cb87f 100644 --- a/symbols/amenity/bureau_de_change.svg +++ b/symbols/amenity/bureau_de_change.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/bus_station.svg b/symbols/amenity/bus_station.svg index 18201dcd3a..952661c93a 100644 --- a/symbols/amenity/bus_station.svg +++ b/symbols/amenity/bus_station.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/cafe.svg b/symbols/amenity/cafe.svg index 4c94a34eaa..a367fdcaf8 100644 --- a/symbols/amenity/cafe.svg +++ b/symbols/amenity/cafe.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/car_wash.svg b/symbols/amenity/car_wash.svg index 400d9117b3..4ba421348c 100644 --- a/symbols/amenity/car_wash.svg +++ b/symbols/amenity/car_wash.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/casino.svg b/symbols/amenity/casino.svg index 5403477fb0..8cccea57bc 100644 --- a/symbols/amenity/casino.svg +++ b/symbols/amenity/casino.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/charging_station.svg b/symbols/amenity/charging_station.svg index ca3231db2a..33ceb4ad13 100644 --- a/symbols/amenity/charging_station.svg +++ b/symbols/amenity/charging_station.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/cinema.svg b/symbols/amenity/cinema.svg index 898b5889cc..dcf5c18c27 100644 --- a/symbols/amenity/cinema.svg +++ b/symbols/amenity/cinema.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/community_centre.svg b/symbols/amenity/community_centre.svg index 946ccbd377..0b56977023 100644 --- a/symbols/amenity/community_centre.svg +++ b/symbols/amenity/community_centre.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/courthouse.svg b/symbols/amenity/courthouse.svg index 5b2d886bca..e75d29743a 100644 --- a/symbols/amenity/courthouse.svg +++ b/symbols/amenity/courthouse.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/dentist.svg b/symbols/amenity/dentist.svg index b6566ecef2..d7cdae1a5d 100644 --- a/symbols/amenity/dentist.svg +++ b/symbols/amenity/dentist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/doctors.svg b/symbols/amenity/doctors.svg index d896947a9b..85e42f570a 100644 --- a/symbols/amenity/doctors.svg +++ b/symbols/amenity/doctors.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/drinking_water.svg b/symbols/amenity/drinking_water.svg index 55a84affe2..9bb1e585ef 100644 --- a/symbols/amenity/drinking_water.svg +++ b/symbols/amenity/drinking_water.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/emergency_phone.svg b/symbols/amenity/emergency_phone.svg index 35e3c737ca..dd5b69f127 100644 --- a/symbols/amenity/emergency_phone.svg +++ b/symbols/amenity/emergency_phone.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/entrance.svg b/symbols/amenity/entrance.svg index 8ac1cda50b..bcaddc2d89 100644 --- a/symbols/amenity/entrance.svg +++ b/symbols/amenity/entrance.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/excrement_bags.svg b/symbols/amenity/excrement_bags.svg index eb75e2c6d1..755f008ac8 100644 --- a/symbols/amenity/excrement_bags.svg +++ b/symbols/amenity/excrement_bags.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/fast_food.svg b/symbols/amenity/fast_food.svg index ae4e831fbe..333be9c5b1 100644 --- a/symbols/amenity/fast_food.svg +++ b/symbols/amenity/fast_food.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/ferry.svg b/symbols/amenity/ferry.svg index 4e422cb0b4..7229c65daf 100644 --- a/symbols/amenity/ferry.svg +++ b/symbols/amenity/ferry.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/firestation.svg b/symbols/amenity/firestation.svg index 62cb55d179..3bdf88f02f 100644 --- a/symbols/amenity/firestation.svg +++ b/symbols/amenity/firestation.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/fountain.svg b/symbols/amenity/fountain.svg index 6da4e30d5f..f1075d5682 100644 --- a/symbols/amenity/fountain.svg +++ b/symbols/amenity/fountain.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/fuel.svg b/symbols/amenity/fuel.svg index 55db6d3634..7fdc2968a4 100644 --- a/symbols/amenity/fuel.svg +++ b/symbols/amenity/fuel.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/helipad.svg b/symbols/amenity/helipad.svg index ae968dc1d0..241c100922 100644 --- a/symbols/amenity/helipad.svg +++ b/symbols/amenity/helipad.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/hospital.svg b/symbols/amenity/hospital.svg index 5bad2398be..f5c806d52b 100644 --- a/symbols/amenity/hospital.svg +++ b/symbols/amenity/hospital.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/hunting_stand.svg b/symbols/amenity/hunting_stand.svg index 47fea9389f..f1782114cf 100644 --- a/symbols/amenity/hunting_stand.svg +++ b/symbols/amenity/hunting_stand.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/ice_cream.svg b/symbols/amenity/ice_cream.svg index 31f05c23a8..eb1d94179c 100644 --- a/symbols/amenity/ice_cream.svg +++ b/symbols/amenity/ice_cream.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/internet_cafe.svg b/symbols/amenity/internet_cafe.svg index 527c71a0aa..60e392cf76 100644 --- a/symbols/amenity/internet_cafe.svg +++ b/symbols/amenity/internet_cafe.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/library.svg b/symbols/amenity/library.svg index df14d3e182..9b94ba89b3 100644 --- a/symbols/amenity/library.svg +++ b/symbols/amenity/library.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/motorcycle_parking.svg b/symbols/amenity/motorcycle_parking.svg index 5f41e62a8b..fd982ce445 100644 --- a/symbols/amenity/motorcycle_parking.svg +++ b/symbols/amenity/motorcycle_parking.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/nightclub.svg b/symbols/amenity/nightclub.svg index 97f57a81e9..1a610a8575 100644 --- a/symbols/amenity/nightclub.svg +++ b/symbols/amenity/nightclub.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/parking.svg b/symbols/amenity/parking.svg index 88fb9201be..b45c51c5df 100644 --- a/symbols/amenity/parking.svg +++ b/symbols/amenity/parking.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/parking_entrance_multistorey.svg b/symbols/amenity/parking_entrance_multistorey.svg index 6be3aff279..c3c648e464 100644 --- a/symbols/amenity/parking_entrance_multistorey.svg +++ b/symbols/amenity/parking_entrance_multistorey.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/parking_entrance_underground.svg b/symbols/amenity/parking_entrance_underground.svg index 219f62245c..e85e990972 100644 --- a/symbols/amenity/parking_entrance_underground.svg +++ b/symbols/amenity/parking_entrance_underground.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/parking_subtle.svg b/symbols/amenity/parking_subtle.svg index 0c76a35a8b..a23980afff 100644 --- a/symbols/amenity/parking_subtle.svg +++ b/symbols/amenity/parking_subtle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/parking_tickets.svg b/symbols/amenity/parking_tickets.svg index 3cd43db855..6bde3c7655 100644 --- a/symbols/amenity/parking_tickets.svg +++ b/symbols/amenity/parking_tickets.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/pharmacy.svg b/symbols/amenity/pharmacy.svg index ff429eef24..ca0526d212 100644 --- a/symbols/amenity/pharmacy.svg +++ b/symbols/amenity/pharmacy.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/place_of_worship.svg b/symbols/amenity/place_of_worship.svg index 21982b8520..e7e6b1e4dc 100644 --- a/symbols/amenity/place_of_worship.svg +++ b/symbols/amenity/place_of_worship.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/police.svg b/symbols/amenity/police.svg index ab76ef1437..29be5ed3f6 100644 --- a/symbols/amenity/police.svg +++ b/symbols/amenity/police.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/post_box.svg b/symbols/amenity/post_box.svg index d7c288e8d3..4809fc0bdc 100644 --- a/symbols/amenity/post_box.svg +++ b/symbols/amenity/post_box.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/post_office.svg b/symbols/amenity/post_office.svg index 792f1dd167..8d7821d5ad 100644 --- a/symbols/amenity/post_office.svg +++ b/symbols/amenity/post_office.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/prison.svg b/symbols/amenity/prison.svg index 65e7fdea19..66a9a4a46f 100644 --- a/symbols/amenity/prison.svg +++ b/symbols/amenity/prison.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/pub.svg b/symbols/amenity/pub.svg index 3804605dae..372e78e1ef 100644 --- a/symbols/amenity/pub.svg +++ b/symbols/amenity/pub.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/public_bath.svg b/symbols/amenity/public_bath.svg index 84fabd345c..466ae79a2a 100644 --- a/symbols/amenity/public_bath.svg +++ b/symbols/amenity/public_bath.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/public_bookcase.svg b/symbols/amenity/public_bookcase.svg index db5905632b..4aaa0e970c 100644 --- a/symbols/amenity/public_bookcase.svg +++ b/symbols/amenity/public_bookcase.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/public_transport_tickets.svg b/symbols/amenity/public_transport_tickets.svg index 15e935ea05..132830c222 100644 --- a/symbols/amenity/public_transport_tickets.svg +++ b/symbols/amenity/public_transport_tickets.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/recycling.svg b/symbols/amenity/recycling.svg index 2923dc20bf..38c3ce5bb4 100644 --- a/symbols/amenity/recycling.svg +++ b/symbols/amenity/recycling.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/rental_bicycle.svg b/symbols/amenity/rental_bicycle.svg index 1859db062c..ce2c7b5feb 100644 --- a/symbols/amenity/rental_bicycle.svg +++ b/symbols/amenity/rental_bicycle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/rental_car.svg b/symbols/amenity/rental_car.svg index 8573509104..94f64d99b7 100644 --- a/symbols/amenity/rental_car.svg +++ b/symbols/amenity/rental_car.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/restaurant.svg b/symbols/amenity/restaurant.svg index 38b25a420f..80cfe39e4d 100644 --- a/symbols/amenity/restaurant.svg +++ b/symbols/amenity/restaurant.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/shelter.svg b/symbols/amenity/shelter.svg index ec729eb4fe..706ef4c45e 100644 --- a/symbols/amenity/shelter.svg +++ b/symbols/amenity/shelter.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/shower.svg b/symbols/amenity/shower.svg index dec849abc5..0de18e9551 100644 --- a/symbols/amenity/shower.svg +++ b/symbols/amenity/shower.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/social_facility.svg b/symbols/amenity/social_facility.svg index e2793fae6f..11fb0e200a 100644 --- a/symbols/amenity/social_facility.svg +++ b/symbols/amenity/social_facility.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/taxi.svg b/symbols/amenity/taxi.svg index 69f3a86435..6e3659903d 100644 --- a/symbols/amenity/taxi.svg +++ b/symbols/amenity/taxi.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/telephone.svg b/symbols/amenity/telephone.svg index 1977c6b287..8097d4fe9a 100644 --- a/symbols/amenity/telephone.svg +++ b/symbols/amenity/telephone.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/theatre.svg b/symbols/amenity/theatre.svg index 6b7f5d9b0b..0e42c0c5bd 100644 --- a/symbols/amenity/theatre.svg +++ b/symbols/amenity/theatre.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/toilets.svg b/symbols/amenity/toilets.svg index b5a4fbe2f4..23298c318f 100644 --- a/symbols/amenity/toilets.svg +++ b/symbols/amenity/toilets.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/town_hall.svg b/symbols/amenity/town_hall.svg index da4c942e59..80f6a6cdbc 100644 --- a/symbols/amenity/town_hall.svg +++ b/symbols/amenity/town_hall.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/vehicle_inspection.svg b/symbols/amenity/vehicle_inspection.svg index 78fe6935a4..ce97cef8c3 100644 --- a/symbols/amenity/vehicle_inspection.svg +++ b/symbols/amenity/vehicle_inspection.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/veterinary.svg b/symbols/amenity/veterinary.svg index 4ab912db99..0e32a255b0 100644 --- a/symbols/amenity/veterinary.svg +++ b/symbols/amenity/veterinary.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/waste_basket.svg b/symbols/amenity/waste_basket.svg index b7022711b7..ab3fe99f95 100644 --- a/symbols/amenity/waste_basket.svg +++ b/symbols/amenity/waste_basket.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/amenity/waste_disposal.svg b/symbols/amenity/waste_disposal.svg index ae65eb0ec9..8e15bb8973 100644 --- a/symbols/amenity/waste_disposal.svg +++ b/symbols/amenity/waste_disposal.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/arete-mid.svg b/symbols/arete-mid.svg index bf2ccb3eab..4cf6d99d8b 100644 --- a/symbols/arete-mid.svg +++ b/symbols/arete-mid.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/arete2.svg b/symbols/arete2.svg index 159a7334ce..6d46269e2c 100644 --- a/symbols/arete2.svg +++ b/symbols/arete2.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/cattle_grid.svg b/symbols/barrier/cattle_grid.svg index e2364727d7..5d47f51389 100644 --- a/symbols/barrier/cattle_grid.svg +++ b/symbols/barrier/cattle_grid.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/cycle_barrier.svg b/symbols/barrier/cycle_barrier.svg index 1c9e933cd2..566074e503 100644 --- a/symbols/barrier/cycle_barrier.svg +++ b/symbols/barrier/cycle_barrier.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/full-height_turnstile.svg b/symbols/barrier/full-height_turnstile.svg index fee19bddce..9193d888d6 100644 --- a/symbols/barrier/full-height_turnstile.svg +++ b/symbols/barrier/full-height_turnstile.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/gate.svg b/symbols/barrier/gate.svg index b50b40fe58..02fcff204b 100644 --- a/symbols/barrier/gate.svg +++ b/symbols/barrier/gate.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/kissing_gate.svg b/symbols/barrier/kissing_gate.svg index db84d714d9..689dca1623 100644 --- a/symbols/barrier/kissing_gate.svg +++ b/symbols/barrier/kissing_gate.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/level_crossing.svg b/symbols/barrier/level_crossing.svg index 609c49e665..27b73bb540 100644 --- a/symbols/barrier/level_crossing.svg +++ b/symbols/barrier/level_crossing.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/level_crossing2.svg b/symbols/barrier/level_crossing2.svg index 44a22406fc..adfade75eb 100644 --- a/symbols/barrier/level_crossing2.svg +++ b/symbols/barrier/level_crossing2.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/lift_gate.svg b/symbols/barrier/lift_gate.svg index 19ea87376d..51b2deba0c 100644 --- a/symbols/barrier/lift_gate.svg +++ b/symbols/barrier/lift_gate.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/motorcycle_barrier.svg b/symbols/barrier/motorcycle_barrier.svg index fce847e37a..3df7748347 100644 --- a/symbols/barrier/motorcycle_barrier.svg +++ b/symbols/barrier/motorcycle_barrier.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/stile.svg b/symbols/barrier/stile.svg index d23e6cef5d..52763cc68a 100644 --- a/symbols/barrier/stile.svg +++ b/symbols/barrier/stile.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/barrier/toll_booth.svg b/symbols/barrier/toll_booth.svg index 9c0938bc05..1670889176 100644 --- a/symbols/barrier/toll_booth.svg +++ b/symbols/barrier/toll_booth.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/cliff.svg b/symbols/cliff.svg index d35b522e0b..29c6455a49 100644 --- a/symbols/cliff.svg +++ b/symbols/cliff.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/cliff2.svg b/symbols/cliff2.svg index 0c479a7f57..8e7f540a96 100644 --- a/symbols/cliff2.svg +++ b/symbols/cliff2.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/corners.svg b/symbols/corners.svg index 55b1bae2e1..ddf09eb13a 100644 --- a/symbols/corners.svg +++ b/symbols/corners.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/highway/bus_stop.svg b/symbols/highway/bus_stop.svg index 463e3e4ab7..1b061c00bd 100644 --- a/symbols/highway/bus_stop.svg +++ b/symbols/highway/bus_stop.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/highway/elevator.svg b/symbols/highway/elevator.svg index b6438c939c..9eb4e13a5e 100644 --- a/symbols/highway/elevator.svg +++ b/symbols/highway/elevator.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/highway/ford.svg b/symbols/highway/ford.svg index 4281dd6a81..dd12860d9c 100644 --- a/symbols/highway/ford.svg +++ b/symbols/highway/ford.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/highway/traffic_light.svg b/symbols/highway/traffic_light.svg index b39c2e536b..a3112c1072 100644 --- a/symbols/highway/traffic_light.svg +++ b/symbols/highway/traffic_light.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/archaeological_site.svg b/symbols/historic/archaeological_site.svg index 32cf2e4e47..851900276f 100644 --- a/symbols/historic/archaeological_site.svg +++ b/symbols/historic/archaeological_site.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/bust.svg b/symbols/historic/bust.svg index 9ece9e3e09..ccceb6ff7a 100644 --- a/symbols/historic/bust.svg +++ b/symbols/historic/bust.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/castle.svg b/symbols/historic/castle.svg index c5411cc070..2c438789e8 100644 --- a/symbols/historic/castle.svg +++ b/symbols/historic/castle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/city_gate.svg b/symbols/historic/city_gate.svg index fe3ac53fc5..b2e9d24e32 100644 --- a/symbols/historic/city_gate.svg +++ b/symbols/historic/city_gate.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/fort.svg b/symbols/historic/fort.svg index c38ab9deb6..ff4d0d3467 100644 --- a/symbols/historic/fort.svg +++ b/symbols/historic/fort.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/fortress.svg b/symbols/historic/fortress.svg index d4396141a9..99b02e458d 100644 --- a/symbols/historic/fortress.svg +++ b/symbols/historic/fortress.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/manor.svg b/symbols/historic/manor.svg index b98523dc1f..463a434e44 100644 --- a/symbols/historic/manor.svg +++ b/symbols/historic/manor.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/memorial.svg b/symbols/historic/memorial.svg index 45a51e7701..40bf0c341e 100644 --- a/symbols/historic/memorial.svg +++ b/symbols/historic/memorial.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/monument.svg b/symbols/historic/monument.svg index be854aeb2c..a38de67ef9 100644 --- a/symbols/historic/monument.svg +++ b/symbols/historic/monument.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/obelisk.svg b/symbols/historic/obelisk.svg index 62dd32c1a8..09d44b2d48 100644 --- a/symbols/historic/obelisk.svg +++ b/symbols/historic/obelisk.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/palace.svg b/symbols/historic/palace.svg index 6d6a534c8a..1631e0fadf 100644 --- a/symbols/historic/palace.svg +++ b/symbols/historic/palace.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/plaque.svg b/symbols/historic/plaque.svg index 7275755418..e86a90495c 100644 --- a/symbols/historic/plaque.svg +++ b/symbols/historic/plaque.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/shrine.svg b/symbols/historic/shrine.svg index 9b194ff780..9ca6fc6887 100644 --- a/symbols/historic/shrine.svg +++ b/symbols/historic/shrine.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/statue.svg b/symbols/historic/statue.svg index 694b48363b..3bd0d923c5 100644 --- a/symbols/historic/statue.svg +++ b/symbols/historic/statue.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/historic/stone.svg b/symbols/historic/stone.svg index 72f6e79718..5798b18282 100644 --- a/symbols/historic/stone.svg +++ b/symbols/historic/stone.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/amusement_arcade.svg b/symbols/leisure/amusement_arcade.svg index 5aad02c494..eb7b65db9b 100644 --- a/symbols/leisure/amusement_arcade.svg +++ b/symbols/leisure/amusement_arcade.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/beach_resort.svg b/symbols/leisure/beach_resort.svg index b4b544cbcd..0e37755c92 100644 --- a/symbols/leisure/beach_resort.svg +++ b/symbols/leisure/beach_resort.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/bird_hide.svg b/symbols/leisure/bird_hide.svg index 42268b9e39..779bace374 100644 --- a/symbols/leisure/bird_hide.svg +++ b/symbols/leisure/bird_hide.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/bowling_alley.svg b/symbols/leisure/bowling_alley.svg index 2adfb4122b..6a2bd09b00 100644 --- a/symbols/leisure/bowling_alley.svg +++ b/symbols/leisure/bowling_alley.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/firepit.svg b/symbols/leisure/firepit.svg index 9c5c492633..f5a8b3d6a1 100644 --- a/symbols/leisure/firepit.svg +++ b/symbols/leisure/firepit.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/fishing.svg b/symbols/leisure/fishing.svg index 5294b083c7..a256efa17e 100644 --- a/symbols/leisure/fishing.svg +++ b/symbols/leisure/fishing.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/fitness.svg b/symbols/leisure/fitness.svg index 4b98a3c8f1..d9c519e77f 100644 --- a/symbols/leisure/fitness.svg +++ b/symbols/leisure/fitness.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/golf.svg b/symbols/leisure/golf.svg index 9f6b0d2cd3..9f5ace89f1 100644 --- a/symbols/leisure/golf.svg +++ b/symbols/leisure/golf.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/miniature_golf.svg b/symbols/leisure/miniature_golf.svg index f7257658ec..91f22ee054 100644 --- a/symbols/leisure/miniature_golf.svg +++ b/symbols/leisure/miniature_golf.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/outdoor_seating.svg b/symbols/leisure/outdoor_seating.svg index 3d12fb2428..f06745579f 100644 --- a/symbols/leisure/outdoor_seating.svg +++ b/symbols/leisure/outdoor_seating.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/playground.svg b/symbols/leisure/playground.svg index b0a2720211..98898f4e0e 100644 --- a/symbols/leisure/playground.svg +++ b/symbols/leisure/playground.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/sauna.svg b/symbols/leisure/sauna.svg index 6fc82e264e..c99af77874 100644 --- a/symbols/leisure/sauna.svg +++ b/symbols/leisure/sauna.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/slipway.svg b/symbols/leisure/slipway.svg index d0ec98a32b..053fa5ae08 100644 --- a/symbols/leisure/slipway.svg +++ b/symbols/leisure/slipway.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/leisure/water_park.svg b/symbols/leisure/water_park.svg index 203b8a9fc5..faeec8bf37 100644 --- a/symbols/leisure/water_park.svg +++ b/symbols/leisure/water_park.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/bell_tower.svg b/symbols/man_made/bell_tower.svg index 1ccf0c7380..bac529f42a 100644 --- a/symbols/man_made/bell_tower.svg +++ b/symbols/man_made/bell_tower.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/bunker.svg b/symbols/man_made/bunker.svg index 7851863942..ab9a7e5aaf 100644 --- a/symbols/man_made/bunker.svg +++ b/symbols/man_made/bunker.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/chimney.svg b/symbols/man_made/chimney.svg index 0ed952ea0a..271b79bf86 100644 --- a/symbols/man_made/chimney.svg +++ b/symbols/man_made/chimney.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/communications_tower.svg b/symbols/man_made/communications_tower.svg index 490e24bfe0..9d127acd3e 100644 --- a/symbols/man_made/communications_tower.svg +++ b/symbols/man_made/communications_tower.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/crane.svg b/symbols/man_made/crane.svg index 32ab035cd3..9c01e73496 100755 --- a/symbols/man_made/crane.svg +++ b/symbols/man_made/crane.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/cross.svg b/symbols/man_made/cross.svg index 65ce50c861..93e0b241e8 100644 --- a/symbols/man_made/cross.svg +++ b/symbols/man_made/cross.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/generator_wind.svg b/symbols/man_made/generator_wind.svg index d45763edc0..865b082f49 100644 --- a/symbols/man_made/generator_wind.svg +++ b/symbols/man_made/generator_wind.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/lighthouse.svg b/symbols/man_made/lighthouse.svg index 4d6699d901..ee86c9197b 100644 --- a/symbols/man_made/lighthouse.svg +++ b/symbols/man_made/lighthouse.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/mast.svg b/symbols/man_made/mast.svg index eb2df02b30..7c11071af4 100644 --- a/symbols/man_made/mast.svg +++ b/symbols/man_made/mast.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/mast_communications.svg b/symbols/man_made/mast_communications.svg index 35584b0be5..fe7bd9e69f 100644 --- a/symbols/man_made/mast_communications.svg +++ b/symbols/man_made/mast_communications.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/mast_lighting.svg b/symbols/man_made/mast_lighting.svg index 5a27d2ac25..be2995d56d 100644 --- a/symbols/man_made/mast_lighting.svg +++ b/symbols/man_made/mast_lighting.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/power_tower.svg b/symbols/man_made/power_tower.svg index 1d0d41a3a9..61232ab495 100644 --- a/symbols/man_made/power_tower.svg +++ b/symbols/man_made/power_tower.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/power_tower_small.svg b/symbols/man_made/power_tower_small.svg index ea97b19595..31e1d993d9 100644 --- a/symbols/man_made/power_tower_small.svg +++ b/symbols/man_made/power_tower_small.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/storage_tank.svg b/symbols/man_made/storage_tank.svg index 7ec71d098c..6098a54ef8 100644 --- a/symbols/man_made/storage_tank.svg +++ b/symbols/man_made/storage_tank.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/telescope_dish.svg b/symbols/man_made/telescope_dish.svg index 432726ad1f..e28ef73c08 100644 --- a/symbols/man_made/telescope_dish.svg +++ b/symbols/man_made/telescope_dish.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/telescope_dome.svg b/symbols/man_made/telescope_dome.svg index 7a2b0872fb..38b1fb6b32 100644 --- a/symbols/man_made/telescope_dome.svg +++ b/symbols/man_made/telescope_dome.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_cantilever_communication.svg b/symbols/man_made/tower_cantilever_communication.svg index 6eaa69bbcc..769a1c45c7 100644 --- a/symbols/man_made/tower_cantilever_communication.svg +++ b/symbols/man_made/tower_cantilever_communication.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_cooling.svg b/symbols/man_made/tower_cooling.svg index 84b50223aa..8deb0a3f69 100644 --- a/symbols/man_made/tower_cooling.svg +++ b/symbols/man_made/tower_cooling.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_defensive.svg b/symbols/man_made/tower_defensive.svg index 80bcc9004a..21373cb694 100644 --- a/symbols/man_made/tower_defensive.svg +++ b/symbols/man_made/tower_defensive.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_dish.svg b/symbols/man_made/tower_dish.svg index 3aac78ab8e..0b903dd7e3 100644 --- a/symbols/man_made/tower_dish.svg +++ b/symbols/man_made/tower_dish.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_dome.svg b/symbols/man_made/tower_dome.svg index 73b930f39b..14283a5d58 100644 --- a/symbols/man_made/tower_dome.svg +++ b/symbols/man_made/tower_dome.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_generic.svg b/symbols/man_made/tower_generic.svg index bc92156bce..1f76c99423 100644 --- a/symbols/man_made/tower_generic.svg +++ b/symbols/man_made/tower_generic.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_lattice.svg b/symbols/man_made/tower_lattice.svg index 6bc39e3d79..d4562ef87c 100644 --- a/symbols/man_made/tower_lattice.svg +++ b/symbols/man_made/tower_lattice.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_lattice_communication.svg b/symbols/man_made/tower_lattice_communication.svg index 08b353a867..c9ec923090 100644 --- a/symbols/man_made/tower_lattice_communication.svg +++ b/symbols/man_made/tower_lattice_communication.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_lattice_lighting.svg b/symbols/man_made/tower_lattice_lighting.svg index a0ed0496f1..bc6ac45aea 100644 --- a/symbols/man_made/tower_lattice_lighting.svg +++ b/symbols/man_made/tower_lattice_lighting.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_lighting.svg b/symbols/man_made/tower_lighting.svg index a79187844b..be42d97093 100644 --- a/symbols/man_made/tower_lighting.svg +++ b/symbols/man_made/tower_lighting.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/tower_observation.svg b/symbols/man_made/tower_observation.svg index 5b8f0d5367..00d8b1c5fd 100644 --- a/symbols/man_made/tower_observation.svg +++ b/symbols/man_made/tower_observation.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/water_tower.svg b/symbols/man_made/water_tower.svg index 1303764b6a..869370bbf1 100644 --- a/symbols/man_made/water_tower.svg +++ b/symbols/man_made/water_tower.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/man_made/windmill.svg b/symbols/man_made/windmill.svg index bcfeab942a..d141786b4d 100644 --- a/symbols/man_made/windmill.svg +++ b/symbols/man_made/windmill.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/natural/cave.svg b/symbols/natural/cave.svg index d9d3a48dbc..cc21721434 100644 --- a/symbols/natural/cave.svg +++ b/symbols/natural/cave.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/natural/peak.svg b/symbols/natural/peak.svg index 738b7882a7..2825929fcb 100644 --- a/symbols/natural/peak.svg +++ b/symbols/natural/peak.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/natural/saddle.svg b/symbols/natural/saddle.svg index 4b7f9a5b99..f3393fb1d5 100644 --- a/symbols/natural/saddle.svg +++ b/symbols/natural/saddle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/natural/spring.svg b/symbols/natural/spring.svg index 7847153c20..0b9dd6cf2e 100644 --- a/symbols/natural/spring.svg +++ b/symbols/natural/spring.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/natural/waterfall.svg b/symbols/natural/waterfall.svg index 2430591009..97dbf4e562 100644 --- a/symbols/natural/waterfall.svg +++ b/symbols/natural/waterfall.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/office/consulate.svg b/symbols/office/consulate.svg index 927be699a4..ff9ac7c1d1 100644 --- a/symbols/office/consulate.svg +++ b/symbols/office/consulate.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/office/embassy.svg b/symbols/office/embassy.svg index 024eecdb79..902cb8685d 100644 --- a/symbols/office/embassy.svg +++ b/symbols/office/embassy.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/oneway-reverse.svg b/symbols/oneway-reverse.svg index 386237bdf9..152630221b 100644 --- a/symbols/oneway-reverse.svg +++ b/symbols/oneway-reverse.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/oneway.svg b/symbols/oneway.svg index 5d01ee1109..00d39145fd 100644 --- a/symbols/oneway.svg +++ b/symbols/oneway.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-4-z7.svg b/symbols/place/place-4-z7.svg index affffaa853..38cead7bbf 100644 --- a/symbols/place/place-4-z7.svg +++ b/symbols/place/place-4-z7.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-4.svg b/symbols/place/place-4.svg index 376db473b4..bf3b5d2b4c 100644 --- a/symbols/place/place-4.svg +++ b/symbols/place/place-4.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-6-z7.svg b/symbols/place/place-6-z7.svg index ea3630db18..9d3ac8c96e 100644 --- a/symbols/place/place-6-z7.svg +++ b/symbols/place/place-6-z7.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-6.svg b/symbols/place/place-6.svg index 74b3e5dda4..7704be7365 100644 --- a/symbols/place/place-6.svg +++ b/symbols/place/place-6.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-capital-6.svg b/symbols/place/place-capital-6.svg index aa41d55655..00bb104461 100644 --- a/symbols/place/place-capital-6.svg +++ b/symbols/place/place-capital-6.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/place/place-capital-8.svg b/symbols/place/place-capital-8.svg index dd19537f94..f58b5b0103 100644 --- a/symbols/place/place-capital-8.svg +++ b/symbols/place/place-capital-8.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/rect.svg b/symbols/rect.svg index fa85177809..1470e812a9 100644 --- a/symbols/rect.svg +++ b/symbols/rect.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/rectdiag.svg b/symbols/rectdiag.svg index 14b91a3a85..67a287c7ad 100644 --- a/symbols/rectdiag.svg +++ b/symbols/rectdiag.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/buddhist.svg b/symbols/religion/buddhist.svg index f8c7340961..eb10efc434 100644 --- a/symbols/religion/buddhist.svg +++ b/symbols/religion/buddhist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/christian.svg b/symbols/religion/christian.svg index d9eafbca12..9ebe57e12f 100644 --- a/symbols/religion/christian.svg +++ b/symbols/religion/christian.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/hinduist.svg b/symbols/religion/hinduist.svg index 7301204e86..f18aa2399e 100644 --- a/symbols/religion/hinduist.svg +++ b/symbols/religion/hinduist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/jewish.svg b/symbols/religion/jewish.svg index 84231b66d2..8d656d497b 100644 --- a/symbols/religion/jewish.svg +++ b/symbols/religion/jewish.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/muslim.svg b/symbols/religion/muslim.svg index 8f39450a8c..52b7a7454a 100644 --- a/symbols/religion/muslim.svg +++ b/symbols/religion/muslim.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/shintoist.svg b/symbols/religion/shintoist.svg index e86a114e6f..7e1505e9b0 100644 --- a/symbols/religion/shintoist.svg +++ b/symbols/religion/shintoist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/sikhist.svg b/symbols/religion/sikhist.svg index 0fa382fdad..0a3d74a20f 100644 --- a/symbols/religion/sikhist.svg +++ b/symbols/religion/sikhist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/religion/taoist.svg b/symbols/religion/taoist.svg index dbedf73d45..d41e483809 100644 --- a/symbols/religion/taoist.svg +++ b/symbols/religion/taoist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/ridge-mid.svg b/symbols/ridge-mid.svg index b889af5082..b415acaf37 100644 --- a/symbols/ridge-mid.svg +++ b/symbols/ridge-mid.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/ridge2.svg b/symbols/ridge2.svg index a0c21f2453..c819d6d11d 100644 --- a/symbols/ridge2.svg +++ b/symbols/ridge2.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/alcohol.svg b/symbols/shop/alcohol.svg index 90e6feda6c..119fc0b346 100644 --- a/symbols/shop/alcohol.svg +++ b/symbols/shop/alcohol.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/art.svg b/symbols/shop/art.svg index 613e7befbc..b127554b46 100644 --- a/symbols/shop/art.svg +++ b/symbols/shop/art.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/bag.svg b/symbols/shop/bag.svg index 5dee5021c0..fbb7797a89 100644 --- a/symbols/shop/bag.svg +++ b/symbols/shop/bag.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/bakery.svg b/symbols/shop/bakery.svg index 6cdc56d9cb..445831ea21 100644 --- a/symbols/shop/bakery.svg +++ b/symbols/shop/bakery.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/beauty.svg b/symbols/shop/beauty.svg index cbe95d61a2..95b0e468af 100644 --- a/symbols/shop/beauty.svg +++ b/symbols/shop/beauty.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/bed.svg b/symbols/shop/bed.svg index 4e8032504e..d6082a429e 100644 --- a/symbols/shop/bed.svg +++ b/symbols/shop/bed.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/beverages.svg b/symbols/shop/beverages.svg index 20b14d893c..d0713b2626 100644 --- a/symbols/shop/beverages.svg +++ b/symbols/shop/beverages.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/bicycle.svg b/symbols/shop/bicycle.svg index c41d053715..161967e1d5 100644 --- a/symbols/shop/bicycle.svg +++ b/symbols/shop/bicycle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/bookmaker.svg b/symbols/shop/bookmaker.svg index 53af5e4c21..b091df9c14 100644 --- a/symbols/shop/bookmaker.svg +++ b/symbols/shop/bookmaker.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/butcher.svg b/symbols/shop/butcher.svg index 1c76fe557a..f3ea90440a 100644 --- a/symbols/shop/butcher.svg +++ b/symbols/shop/butcher.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/car.svg b/symbols/shop/car.svg index b32e8a4dcb..b33bbdd3ba 100644 --- a/symbols/shop/car.svg +++ b/symbols/shop/car.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/car_parts.svg b/symbols/shop/car_parts.svg index d34ad6f0eb..f97831f6d3 100644 --- a/symbols/shop/car_parts.svg +++ b/symbols/shop/car_parts.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/car_repair.svg b/symbols/shop/car_repair.svg index 9fd280370f..5f016e8867 100644 --- a/symbols/shop/car_repair.svg +++ b/symbols/shop/car_repair.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/charity.svg b/symbols/shop/charity.svg index 8f5c2ee461..8086178f5a 100644 --- a/symbols/shop/charity.svg +++ b/symbols/shop/charity.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/chemist.svg b/symbols/shop/chemist.svg index 6de827038e..89d08d8419 100644 --- a/symbols/shop/chemist.svg +++ b/symbols/shop/chemist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/clothes.svg b/symbols/shop/clothes.svg index 496c109b68..278e6e6372 100644 --- a/symbols/shop/clothes.svg +++ b/symbols/shop/clothes.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/coffee.svg b/symbols/shop/coffee.svg index 9ccbe5721d..4fd8948527 100644 --- a/symbols/shop/coffee.svg +++ b/symbols/shop/coffee.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/computer.svg b/symbols/shop/computer.svg index e9d3f879dc..34f099dd1e 100644 --- a/symbols/shop/computer.svg +++ b/symbols/shop/computer.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/confectionery.svg b/symbols/shop/confectionery.svg index 97b264805f..be8887c1e9 100644 --- a/symbols/shop/confectionery.svg +++ b/symbols/shop/confectionery.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/convenience.svg b/symbols/shop/convenience.svg index 2f6feb9713..735a0b78c2 100644 --- a/symbols/shop/convenience.svg +++ b/symbols/shop/convenience.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/copyshop.svg b/symbols/shop/copyshop.svg index 24d4d28687..982cef12e4 100644 --- a/symbols/shop/copyshop.svg +++ b/symbols/shop/copyshop.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/dairy.svg b/symbols/shop/dairy.svg index 9137d31b7e..b4e714b8f3 100644 --- a/symbols/shop/dairy.svg +++ b/symbols/shop/dairy.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/deli.svg b/symbols/shop/deli.svg index c4efaf8944..c7d9594ddd 100644 --- a/symbols/shop/deli.svg +++ b/symbols/shop/deli.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/department_store.svg b/symbols/shop/department_store.svg index 9c4be7ff54..91f780eaf9 100644 --- a/symbols/shop/department_store.svg +++ b/symbols/shop/department_store.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/diy.svg b/symbols/shop/diy.svg index aba62b210c..0136b163f7 100644 --- a/symbols/shop/diy.svg +++ b/symbols/shop/diy.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/electronics.svg b/symbols/shop/electronics.svg index 603edc3092..05bf65a2ae 100644 --- a/symbols/shop/electronics.svg +++ b/symbols/shop/electronics.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/fabric.svg b/symbols/shop/fabric.svg index 703c0c4b8a..577a8592df 100644 --- a/symbols/shop/fabric.svg +++ b/symbols/shop/fabric.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/florist.svg b/symbols/shop/florist.svg index 9d5f237454..fd8c908a03 100644 --- a/symbols/shop/florist.svg +++ b/symbols/shop/florist.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/furniture.svg b/symbols/shop/furniture.svg index 4805c87c60..302cb7beb3 100644 --- a/symbols/shop/furniture.svg +++ b/symbols/shop/furniture.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/garden_centre.svg b/symbols/shop/garden_centre.svg index 67592cadfc..8c19c41967 100644 --- a/symbols/shop/garden_centre.svg +++ b/symbols/shop/garden_centre.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/gift.svg b/symbols/shop/gift.svg index a2af92e979..edfeee8a80 100644 --- a/symbols/shop/gift.svg +++ b/symbols/shop/gift.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/greengrocer.svg b/symbols/shop/greengrocer.svg index f6dd6258de..041d25e0e4 100644 --- a/symbols/shop/greengrocer.svg +++ b/symbols/shop/greengrocer.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/hairdresser.svg b/symbols/shop/hairdresser.svg index f2cafc8166..b2753219e3 100644 --- a/symbols/shop/hairdresser.svg +++ b/symbols/shop/hairdresser.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/hifi.svg b/symbols/shop/hifi.svg index aa3c945d4b..2bd4185ba0 100644 --- a/symbols/shop/hifi.svg +++ b/symbols/shop/hifi.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/houseware.svg b/symbols/shop/houseware.svg index 91baa90424..5152e98a65 100644 --- a/symbols/shop/houseware.svg +++ b/symbols/shop/houseware.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/interior_decoration.svg b/symbols/shop/interior_decoration.svg index c7268bb573..149c69a41f 100644 --- a/symbols/shop/interior_decoration.svg +++ b/symbols/shop/interior_decoration.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/jewelry.svg b/symbols/shop/jewelry.svg index 0b33e6ceda..e270f805ca 100644 --- a/symbols/shop/jewelry.svg +++ b/symbols/shop/jewelry.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/laundry.svg b/symbols/shop/laundry.svg index e7d4b1a68f..b0da7247e0 100644 --- a/symbols/shop/laundry.svg +++ b/symbols/shop/laundry.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/marketplace.svg b/symbols/shop/marketplace.svg index 3d59c902dd..1dbd86e56d 100644 --- a/symbols/shop/marketplace.svg +++ b/symbols/shop/marketplace.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/massage.svg b/symbols/shop/massage.svg index b39804de11..9eab3af0fe 100644 --- a/symbols/shop/massage.svg +++ b/symbols/shop/massage.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/medical_supply.svg b/symbols/shop/medical_supply.svg index 12ba38b2ea..5947861373 100644 --- a/symbols/shop/medical_supply.svg +++ b/symbols/shop/medical_supply.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/mobile_phone.svg b/symbols/shop/mobile_phone.svg index 9227dfeefa..937e4e1ae1 100644 --- a/symbols/shop/mobile_phone.svg +++ b/symbols/shop/mobile_phone.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/motorcycle.svg b/symbols/shop/motorcycle.svg index 26600456a6..c8c06139d2 100644 --- a/symbols/shop/motorcycle.svg +++ b/symbols/shop/motorcycle.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/music.svg b/symbols/shop/music.svg index 9f10cc5587..956d8a60e4 100644 --- a/symbols/shop/music.svg +++ b/symbols/shop/music.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/musical_instrument.svg b/symbols/shop/musical_instrument.svg index 5d46aad7bb..a9e7dc5acf 100644 --- a/symbols/shop/musical_instrument.svg +++ b/symbols/shop/musical_instrument.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/newsagent.svg b/symbols/shop/newsagent.svg index 2581ce4c36..2bba23b761 100644 --- a/symbols/shop/newsagent.svg +++ b/symbols/shop/newsagent.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/optician.svg b/symbols/shop/optician.svg index c93e5e1753..cb2f392b16 100644 --- a/symbols/shop/optician.svg +++ b/symbols/shop/optician.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/outdoor.svg b/symbols/shop/outdoor.svg index 3cebb40a69..b99e67fa70 100644 --- a/symbols/shop/outdoor.svg +++ b/symbols/shop/outdoor.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/paint.svg b/symbols/shop/paint.svg index afd9c4cf63..a61984c6b8 100644 --- a/symbols/shop/paint.svg +++ b/symbols/shop/paint.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/perfumery.svg b/symbols/shop/perfumery.svg index e22e75c8a4..4c45b177bd 100644 --- a/symbols/shop/perfumery.svg +++ b/symbols/shop/perfumery.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/pet.svg b/symbols/shop/pet.svg index fc09a0b9b6..6cb49a88b8 100644 --- a/symbols/shop/pet.svg +++ b/symbols/shop/pet.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/photo.svg b/symbols/shop/photo.svg index 1fd9eb7adf..dcf6136f3d 100644 --- a/symbols/shop/photo.svg +++ b/symbols/shop/photo.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/seafood.svg b/symbols/shop/seafood.svg index e11dae8387..fd62f7d7e5 100644 --- a/symbols/shop/seafood.svg +++ b/symbols/shop/seafood.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/second_hand.svg b/symbols/shop/second_hand.svg index 0d88a33e0d..e1c216088d 100644 --- a/symbols/shop/second_hand.svg +++ b/symbols/shop/second_hand.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/shoes.svg b/symbols/shop/shoes.svg index d70a3e9226..8a1b7d1cc1 100644 --- a/symbols/shop/shoes.svg +++ b/symbols/shop/shoes.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/sports.svg b/symbols/shop/sports.svg index f114dab101..50ea6eef4f 100644 --- a/symbols/shop/sports.svg +++ b/symbols/shop/sports.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/stationery.svg b/symbols/shop/stationery.svg index 13dbd3c64d..a80f13a77e 100644 --- a/symbols/shop/stationery.svg +++ b/symbols/shop/stationery.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/supermarket.svg b/symbols/shop/supermarket.svg index 6d87ba104d..4840fe0d6b 100644 --- a/symbols/shop/supermarket.svg +++ b/symbols/shop/supermarket.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/tea.svg b/symbols/shop/tea.svg index aa562b7c2a..310a08812d 100644 --- a/symbols/shop/tea.svg +++ b/symbols/shop/tea.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/ticket.svg b/symbols/shop/ticket.svg index be0c05b512..0f07178578 100644 --- a/symbols/shop/ticket.svg +++ b/symbols/shop/ticket.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/tobacco.svg b/symbols/shop/tobacco.svg index b24a54fc13..0a151d3ae5 100644 --- a/symbols/shop/tobacco.svg +++ b/symbols/shop/tobacco.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/toys.svg b/symbols/shop/toys.svg index d28e53ce5e..7b5eb16895 100644 --- a/symbols/shop/toys.svg +++ b/symbols/shop/toys.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/trade.svg b/symbols/shop/trade.svg index 4388674a91..036cca22ed 100644 --- a/symbols/shop/trade.svg +++ b/symbols/shop/trade.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/travel_agency.svg b/symbols/shop/travel_agency.svg index e708f4a002..c0bc3756ac 100644 --- a/symbols/shop/travel_agency.svg +++ b/symbols/shop/travel_agency.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/tyres.svg b/symbols/shop/tyres.svg index 35b6558a2e..1e87f70c8a 100644 --- a/symbols/shop/tyres.svg +++ b/symbols/shop/tyres.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/variety_store.svg b/symbols/shop/variety_store.svg index 736a8b582c..24fb1da0db 100644 --- a/symbols/shop/variety_store.svg +++ b/symbols/shop/variety_store.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/video.svg b/symbols/shop/video.svg index 6462b5e2e9..18365985a2 100644 --- a/symbols/shop/video.svg +++ b/symbols/shop/video.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/shop/video_games.svg b/symbols/shop/video_games.svg index 62462efa34..b5623c42e3 100644 --- a/symbols/shop/video_games.svg +++ b/symbols/shop/video_games.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/square.svg b/symbols/square.svg index afec5690cb..f0e2598b42 100644 --- a/symbols/square.svg +++ b/symbols/square.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/alpinehut.svg b/symbols/tourism/alpinehut.svg index 5085544e18..cdc4ec0b03 100644 --- a/symbols/tourism/alpinehut.svg +++ b/symbols/tourism/alpinehut.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/apartment.svg b/symbols/tourism/apartment.svg index becd3963f6..fdcc3f787a 100644 --- a/symbols/tourism/apartment.svg +++ b/symbols/tourism/apartment.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/artwork.svg b/symbols/tourism/artwork.svg index a0cee1ef6c..424bd7a6da 100644 --- a/symbols/tourism/artwork.svg +++ b/symbols/tourism/artwork.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/audioguide.svg b/symbols/tourism/audioguide.svg index 54dbf01320..7c7a0a1cd8 100644 --- a/symbols/tourism/audioguide.svg +++ b/symbols/tourism/audioguide.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/board.svg b/symbols/tourism/board.svg index 3f6eda2d86..0d2b39bfa6 100644 --- a/symbols/tourism/board.svg +++ b/symbols/tourism/board.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/camping.svg b/symbols/tourism/camping.svg index 5285abfc07..65706ce555 100644 --- a/symbols/tourism/camping.svg +++ b/symbols/tourism/camping.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/caravan_park.svg b/symbols/tourism/caravan_park.svg index f154a8d473..67b36d984c 100644 --- a/symbols/tourism/caravan_park.svg +++ b/symbols/tourism/caravan_park.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/chalet.svg b/symbols/tourism/chalet.svg index 97b0f4f949..572424a9d1 100644 --- a/symbols/tourism/chalet.svg +++ b/symbols/tourism/chalet.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/guest_house.svg b/symbols/tourism/guest_house.svg index d90a625412..386199a4bd 100644 --- a/symbols/tourism/guest_house.svg +++ b/symbols/tourism/guest_house.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/guidepost.svg b/symbols/tourism/guidepost.svg index 9d1dedfa97..884e5fa96b 100644 --- a/symbols/tourism/guidepost.svg +++ b/symbols/tourism/guidepost.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/hostel.svg b/symbols/tourism/hostel.svg index e29a71b245..b10bcb21d8 100644 --- a/symbols/tourism/hostel.svg +++ b/symbols/tourism/hostel.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/hotel.svg b/symbols/tourism/hotel.svg index e9696fdd7b..879d08301a 100644 --- a/symbols/tourism/hotel.svg +++ b/symbols/tourism/hotel.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/map.svg b/symbols/tourism/map.svg index a56a44f7bd..00b67422c0 100644 --- a/symbols/tourism/map.svg +++ b/symbols/tourism/map.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/motel.svg b/symbols/tourism/motel.svg index be8095d0e7..2b2480bd4f 100644 --- a/symbols/tourism/motel.svg +++ b/symbols/tourism/motel.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/museum.svg b/symbols/tourism/museum.svg index 52877a8e84..24973460d4 100644 --- a/symbols/tourism/museum.svg +++ b/symbols/tourism/museum.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/office.svg b/symbols/tourism/office.svg index 312cc3ca56..f1031c25ed 100644 --- a/symbols/tourism/office.svg +++ b/symbols/tourism/office.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/picnic.svg b/symbols/tourism/picnic.svg index 7c25022f7c..067ee11f89 100644 --- a/symbols/tourism/picnic.svg +++ b/symbols/tourism/picnic.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/terminal.svg b/symbols/tourism/terminal.svg index c8af583889..f341cece41 100644 --- a/symbols/tourism/terminal.svg +++ b/symbols/tourism/terminal.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/viewpoint.svg b/symbols/tourism/viewpoint.svg index c9f1dfea06..65b5187064 100644 --- a/symbols/tourism/viewpoint.svg +++ b/symbols/tourism/viewpoint.svg @@ -1,4 +1,3 @@ - diff --git a/symbols/tourism/wilderness_hut.svg b/symbols/tourism/wilderness_hut.svg index 2f966a6df8..36d03eae74 100644 --- a/symbols/tourism/wilderness_hut.svg +++ b/symbols/tourism/wilderness_hut.svg @@ -1,4 +1,3 @@ - From e81beaeff28d1d6acf7fff217dd435d0eb4c1e7a Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 13 Sep 2021 21:26:28 +0200 Subject: [PATCH 31/55] Don't use adressing color for golf features --- style/golf.mss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/style/golf.mss b/style/golf.mss index ac43ef69a1..9f656f7e1b 100644 --- a/style/golf.mss +++ b/style/golf.mss @@ -1,3 +1,5 @@ +@golf-color: #666; + #landcover[zoom >= 12] { ::high-zoom[zoom >= 12] { [feature = 'golf_tee'], @@ -25,7 +27,7 @@ #golf-line[zoom >= 16] { [golf = 'hole'] { - line-color: @address-color; + line-color: @golf-color; line-width: 0.5; } } @@ -35,7 +37,7 @@ [feature = 'golf_hole'][name != ''] { text-placement: line; text-size: 11; - text-fill: @address-color; + text-fill: @golf-color; text-face-name: @book-fonts; text-halo-radius: @standard-halo-radius; text-halo-fill: @standard-halo-fill; @@ -51,7 +53,7 @@ [feature = 'golf_hole'], [feature = 'golf_pin'] { marker-file: url('symbols/leisure/golf_pin.svg'); - marker-fill: @address-color; + marker-fill: @golf-color; marker-clip: false; } } @@ -60,7 +62,7 @@ [feature = 'golf_pin'][ref != ''] { text-name: "[ref]"; text-size: @standard-font-size; - text-fill: @address-color; + text-fill: @golf-color; text-face-name: @book-fonts; text-halo-radius: @standard-halo-radius; text-halo-fill: @standard-halo-fill; From 346ccffc359a74b51302432c09dba39cc4035af4 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Mon, 13 Sep 2021 21:28:13 +0200 Subject: [PATCH 32/55] Use color instead of comp-op: soft-light --- style/golf.mss | 1 - symbols/golf_rough.svg | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/style/golf.mss b/style/golf.mss index 9f656f7e1b..7ead403b44 100644 --- a/style/golf.mss +++ b/style/golf.mss @@ -20,7 +20,6 @@ ::high-zoom[zoom >= 15] { [feature = 'golf_rough'] { polygon-pattern-file: url('symbols/golf_rough.svg'); - polygon-pattern-comp-op: soft-light; } } } diff --git a/symbols/golf_rough.svg b/symbols/golf_rough.svg index 708bf8c9e3..5d791fe287 100644 --- a/symbols/golf_rough.svg +++ b/symbols/golf_rough.svg @@ -5,5 +5,5 @@ xmlns="http://www.w3.org/2000/svg" width="40" height="40"> - + From 7f39bd9f216e77254949df11a8e969cc77dc692f Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Tue, 14 Sep 2021 17:18:13 +0200 Subject: [PATCH 33/55] Increase spring label dy --- style/amenity-points.mss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 73bf4b1238..85e36cca3c 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -2338,7 +2338,7 @@ text-face-name: @standard-font; text-halo-radius: @standard-halo-radius; text-halo-fill: @standard-halo-fill; - text-dy: 6; + text-dy: 7; } [feature = 'amenity_atm'][zoom >= 19], From 96a4ecffafa17d7978e76a7f9d55117506d121af Mon Sep 17 00:00:00 2001 From: Justin Gruca Date: Thu, 16 Sep 2021 20:08:50 -0500 Subject: [PATCH 34/55] Add extra logging output and check for unexpected status codes --- scripts/get-external-data.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/scripts/get-external-data.py b/scripts/get-external-data.py index 454fdba1a1..ebe82cb8b7 100755 --- a/scripts/get-external-data.py +++ b/scripts/get-external-data.py @@ -174,6 +174,8 @@ def main(): else: logging.basicConfig(level=logging.INFO) + logging.info("Starting load of external data into database") + with open(opts.config) as config_file: config = yaml.safe_load(config_file) data_dir = opts.data or config["settings"]["data_dir"] @@ -229,18 +231,23 @@ def main(): else: headers = {} + logging.info(" Fetching {}".format(source["url"])) download = s.get(source["url"], headers=headers) download.raise_for_status() - if (download.status_code == 200): + if download.status_code == requests.codes.ok: if "Last-Modified" in download.headers: new_last_modified = download.headers["Last-Modified"] else: new_last_modified = None + + logging.info(" Download complete ({} bytes)".format(len(download.content))) + if "archive" in source and source["archive"]["format"] == "zip": zip = zipfile.ZipFile(io.BytesIO(download.content)) for member in source["archive"]["files"]: zip.extract(member, workingdir) + logging.info(" File decompressed") ogrpg = "PG:dbname={}".format(database) @@ -266,6 +273,7 @@ def main(): ogrcommand += [ogrpg, os.path.join(workingdir, source["file"])] + logging.info(" Importing into database") logging.debug("running {}".format( subprocess.list2cmdline(ogrcommand))) @@ -283,13 +291,18 @@ def main(): raise RuntimeError( "ogr2ogr error when loading table {}".format(name)) + logging.info(" Import complete") + this_table.index() if renderuser is not None: this_table.grant_access(renderuser) this_table.replace(new_last_modified) + elif download.status_code == requests.codes.not_modified: + logging.info(" Table {} did not require updating".format(name)) else: - logging.info( - "Table {} did not require updating".format(name)) + logging.critical(" Unexpected response code ({}".format(download.status_code)) + logging.critical(" Table {} was not updated".format(name)) + if conn: conn.close() From 149670e3695ce8e5174974673e3141f0422b62a7 Mon Sep 17 00:00:00 2001 From: Justin Gruca Date: Fri, 17 Sep 2021 15:30:30 -0500 Subject: [PATCH 35/55] Log before decompressing file --- scripts/get-external-data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get-external-data.py b/scripts/get-external-data.py index ebe82cb8b7..f0cdb8caa5 100755 --- a/scripts/get-external-data.py +++ b/scripts/get-external-data.py @@ -244,10 +244,10 @@ def main(): logging.info(" Download complete ({} bytes)".format(len(download.content))) if "archive" in source and source["archive"]["format"] == "zip": + logging.info(" Decompressing file") zip = zipfile.ZipFile(io.BytesIO(download.content)) for member in source["archive"]["files"]: zip.extract(member, workingdir) - logging.info(" File decompressed") ogrpg = "PG:dbname={}".format(database) From 62c570ee46a02c17cf1684482a9bf3436b3f7fcd Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Wed, 22 Sep 2021 20:12:39 -0700 Subject: [PATCH 36/55] Rewrite changelog to be clearer and add new items --- CHANGELOG.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90a23dcf0a..c32c7e514b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,17 @@ ## [Unreleased](https://github.com/gravitystorm/openstreetmap-carto/compare/v5.3.1...master) ### Changes -- Fix type in text-line-spacing (#4455) -- Shield dimensions (#4453) -- Updated to work with pyscopg2 version 2.9.1 (#4451) -- Fix advertising column shape (#4424) -- Simplified version fixing tourism=information (#4420) -- Make text for subway stations render at z>=15 (#4392) -- Update README.md on v5 (#4357) -- Windows line ending fix (#4330) -- Documentation fixes (#4310) -- De-emphasize parking=street_side (#4301) -- Update DB dockerfile to use the postgis image (#4294) +- Added a new `planet_osm_line_label` index (#4381) +- Updated Docker development setup to use offical PostGIS images (#4294) +- Fixed endline conversion issues with python setup scripts on Windows (#4330) +- Added detailed rendering of golf courses (#4381, #4467) +- De-emphasized street-side parking (#4301) +- Changed subway stations to start text rendering at z15 (#4392) +- Updated road shield generation scripts to Python 3 (#4453) +- Updated external data loading script to support pyscopg2 2.9.1 (#4451) +- Stopped displaying tourism=information with unknown information values +- Switched the Natural Earth URL to point at its new location (#4466) +- Added more logging to the external data loading script (#4472) ## [v5.3.1](https://github.com/gravitystorm/openstreetmap-carto/compare/v5.3.0...v5.3.1) - 2021-02-04 ### Changes From db9abe26d70db365a9f58acc62ad344fef4a58d0 Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Wed, 22 Sep 2021 20:20:14 -0700 Subject: [PATCH 37/55] Update changelog for v5.4.0 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c32c7e514b..5c4ac64647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -## [Unreleased](https://github.com/gravitystorm/openstreetmap-carto/compare/v5.3.1...master) +## [Unreleased](https://github.com/gravitystorm/openstreetmap-carto/compare/v5.4.0...master) +## [v5.4.0](https://github.com/gravitystorm/openstreetmap-carto/compare/v5.3.1...v5.4.0) - 2021-09-22 ### Changes - Added a new `planet_osm_line_label` index (#4381) - Updated Docker development setup to use offical PostGIS images (#4294) From 4bc7881d3257881b180bf5c0d326aa31a4748ba5 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 29 Nov 2021 13:02:52 +0000 Subject: [PATCH 38/55] fixing crane.svg marked as executable --- symbols/man_made/crane.svg | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 symbols/man_made/crane.svg diff --git a/symbols/man_made/crane.svg b/symbols/man_made/crane.svg old mode 100755 new mode 100644 From 7728ee73b461450a992f9d15cc57bbee49607b7b Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Sun, 12 Dec 2021 09:29:02 +0100 Subject: [PATCH 39/55] fix some typos --- INSTALL.md | 2 +- README.md | 2 +- docker-compose.yml | 2 -- openstreetmap-carto.lua | 2 +- openstreetmap-carto.style | 2 +- scripts/get-external-data.py | 2 +- scripts/indexes.py | 2 +- 7 files changed, 6 insertions(+), 8 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 347a3112c8..974260e74e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -51,7 +51,7 @@ DejaVu Sans is used as an optional fallback font for systems without Noto Sans. Hanazono is used a fallback for seldom used CJK characters that are not covered by Noto. -Unifont is used as a last resort fallback, with it's excellent coverage, common presence on machines, and ugly look. For compatibility reasons, we support two Linux-distributions-specific versions of Unifont, therefor it's expected that you *always* get a warning about a missing Unifont version. +Unifont is used as a last resort fallback, with it's excellent coverage, common presence on machines, and ugly look. For compatibility reasons, we support two Linux-distributions-specific versions of Unifont, therefore it's expected that you *always* get a warning about a missing Unifont version. If you do not install all the fonts, the rendering itself will not break, but missing glyphs will be ugly. diff --git a/README.md b/README.md index 3829e13bef..dfc993a577 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ cartographic project you can expect the following: shapefiles and fonts but will not contain changes that require software or database upgrades. * MAJOR: Any change the requires reloading a database, or upgrading software - dependecies will trigger a major version change. + dependencies will trigger a major version change. # Roadmap diff --git a/docker-compose.yml b/docker-compose.yml index 60a2d09fea..72cc7903b5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,8 +19,6 @@ services: build: context: . dockerfile: Dockerfile.db - ports: - - "127.0.0.1:5432:5432" environment: - POSTGRES_HOST_AUTH_METHOD=trust - PG_WORK_MEM diff --git a/openstreetmap-carto.lua b/openstreetmap-carto.lua index 8dbca62a64..8fc2c85212 100644 --- a/openstreetmap-carto.lua +++ b/openstreetmap-carto.lua @@ -121,7 +121,7 @@ local delete_tags = { 'dcgis:gis_id', -- Building Identification Number (New York, US) 'nycdoitt:bin', - -- Chicago Building Inport (US) + -- Chicago Building Import (US) 'chicago:building_id', -- Louisville, Kentucky/Building Outlines Import (US) 'lojic:bgnum', diff --git a/openstreetmap-carto.style b/openstreetmap-carto.style index 77134cb705..0a30add22d 100644 --- a/openstreetmap-carto.style +++ b/openstreetmap-carto.style @@ -1,5 +1,5 @@ # This is the osm2pgsql .style file for openstreetmap-carto. -# It is inteded to be used with openstreetmap-carto.lua and osm2pgsql Lua +# It is intended to be used with openstreetmap-carto.lua and osm2pgsql Lua # transforms. Full usage details are in INSTALL.md # Among things, this means that the linear vs polygon distinction in this file # doesn't matter, because that is set in the Lua and this file is only used for diff --git a/scripts/get-external-data.py b/scripts/get-external-data.py index f0cdb8caa5..e1f1e058e1 100755 --- a/scripts/get-external-data.py +++ b/scripts/get-external-data.py @@ -49,7 +49,7 @@ def __init__(self, name, conn, temp_schema, schema, metadata_table): self._dst_schema = schema self._metadata_table = metadata_table - # Clean up the temporary schema in preperation for loading + # Clean up the temporary schema in preparation for loading def clean_temp(self): with self._conn.cursor() as cur: cur.execute('''DROP TABLE IF EXISTS "{temp_schema}"."{name}"''' diff --git a/scripts/indexes.py b/scripts/indexes.py index ed27b01c58..02e721f01f 100755 --- a/scripts/indexes.py +++ b/scripts/indexes.py @@ -49,7 +49,7 @@ def reindex_cb(table, name, function, where): if not args.concurrent: print('REINDEX planet_osm_{table}_{name};'.format(table=table, name=name)) else: - # Rebuilding indexes concurently requires making a new index, dropping the old one, and renaming. + # Rebuilding indexes concurrently requires making a new index, dropping the old one, and renaming. print('ALTER INDEX planet_osm_{table}_{name} RENAME TO planet_osm_{table}_{name}_old;'.format(table=table, name=name)) cb(table, name, function, where) print('DROP INDEX planet_osm_{table}_{name}_old;\n'.format(table=table, name=name)) From a6716e89752e002317541fda0641c0a2f368cee8 Mon Sep 17 00:00:00 2001 From: Jeroen Hoek Date: Thu, 21 Apr 2022 19:56:54 +0200 Subject: [PATCH 40/55] Fix shop=car_repair label/icon colour mismatch The colour of the icon (purple) and the label (brown) don't match. This commit makes the label purple to match most other `shop=*` tags. Fixes #2658 --- style/amenity-points.mss | 4 ---- 1 file changed, 4 deletions(-) diff --git a/style/amenity-points.mss b/style/amenity-points.mss index 85e36cca3c..2d0df59b2b 100644 --- a/style/amenity-points.mss +++ b/style/amenity-points.mss @@ -1024,7 +1024,6 @@ [shop = 'car_repair'][zoom >= 18] { marker-file: url('symbols/shop/car_repair.svg'); - marker-fill: @amenity-brown; } [shop = 'dairy'][zoom >= 18] { @@ -2604,9 +2603,6 @@ text-face-name: @standard-font; text-halo-radius: @standard-halo-radius; text-halo-fill: rgba(255, 255, 255, 0.6); - [shop = 'car_repair'] { - text-fill: @amenity-brown; - } [shop = 'massage'] { text-fill: @leisure-green; } From ed6902a2907ab4a6c8f8bb18c9a806aede42e3dd Mon Sep 17 00:00:00 2001 From: Frederick Hoyles Date: Mon, 25 Apr 2022 00:28:17 +0200 Subject: [PATCH 41/55] Allow building on ARM64 machines by setting platform: linux/amd64 Without explicitly setting this all docker compose commands including `docker compose up` and `docker compose build kosmtik` fail due to a lack of prebuilt binaries for arm64. A native image would be more performant but this workaround allows at least allows development on new Apple machines. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 72cc7903b5..be99a123ae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,7 @@ version: '2' services: kosmtik: image: kosmtik:v1 + platform: linux/amd64 build: context: . dockerfile: Dockerfile From 9b1b51d37c3cf4c2cc66bf669cb7d81e54f7d910 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Mon, 23 May 2022 19:46:22 +0200 Subject: [PATCH 42/55] document growing issue count --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfc993a577..487033de2f 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ to reload their databases, v3.x compatibility is not maintained. The v5.x series updates Lua tag transforms, linestring and polygon decisions have changed. -There are over [400 open requests][issues], some that have been open for years. +There are over [500 open requests][issues], some that have been open for years. These need reviewing and dividing into obvious fixes, or additional new features that need some cartographic judgement. From 3f2e12a9a3d95f790f2495c9e5eac2ef63db4a1b Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Mon, 23 May 2022 23:54:27 -0700 Subject: [PATCH 43/55] Remove Matthijs as maintainer, as he is stepping down --- CODE_OF_CONDUCT.md | 2 +- README.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index eb45275b10..e1d6c14184 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -62,7 +62,7 @@ When using the OpenStreetMap Carto spaces you should act in the spirit of the va The OpenStreetMap Carto maintainers are responsible for handling conduct-related issues. Their goal is to de-escalate conflicts and try to resolve issues to the satisfaction of all parties. -If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,penorman@mac.com,info@matthijsmelissen.nl,matkoniecz@gmail.com,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). +If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,penorman@mac.com,matkoniecz@gmail.com,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). **Note that the goal of the Code of Conduct and the maintainers is to resolve conflicts in the most harmonious way possible.** We hope that in most cases issues may be resolved through polite discussion and mutual agreement. Bans and other forceful measures are to be employed only as a last resort. diff --git a/README.md b/README.md index dfc993a577..d08042def3 100644 --- a/README.md +++ b/README.md @@ -93,10 +93,13 @@ maps using Mapnik, many based on this project. Some alternatives are: # Maintainers * Andy Allan [@gravitystorm](https://github.com/gravitystorm/) -* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) * Paul Norman [@pnorman](https://github.com/pnorman/) * Mateusz Konieczny [@matkoniecz](https://github.com/matkoniecz/) * Daniel Koć [@kocio-pl](https://github.com/kocio-pl) * Christoph Hormann [@imagico](https://github.com/imagico) * Lukas Sommer [@sommerluk](https://github.com/sommerluk) * Joseph Eisenberg [@jeisenbe](https://github.com/jeisenbe) + +## Previous maintainers + +* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) From 5f2fa7ea23ecc4f1c6fe0fd7d9618834fcca4e0c Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Wed, 25 May 2022 12:24:39 -0700 Subject: [PATCH 44/55] Add nebulon42 to previous maintainer list --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d08042def3..231a263b52 100644 --- a/README.md +++ b/README.md @@ -103,3 +103,4 @@ maps using Mapnik, many based on this project. Some alternatives are: ## Previous maintainers * Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) +* Michael Glanznig [@nebulon42](https://github.com/nebulon42) From a9dae4bdb90a448dc6348d9676d70b03395175dc Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Wed, 1 Jun 2022 13:57:00 +0200 Subject: [PATCH 45/55] Technical fix (#4562) * Mateusz Konieczny (matkoniecz) - no longer active I am no longer really active. Thanks for working together and improving OSM Carto together! I am no longer active for several reasons: - I implemented most of what I wanted and could improve - lack of time - people kept trying to use OSM Carto to force their pet tagging schemes on others, bypassing discussions - people were unhappy, no matter which decision I have taken (see also the first point) - people were unhappy also if no decision was taken - repeated insults from some of people who expected me to work on OSM Carto as long as there were things that I could improve and wanted improve other issues were not important, but hobby projects are worth it when you are either doing something that you really want or people are really appreciating/using/liking what you are doing. In case of neither not really applying it is better to change the hobby project. I am removing myself as I am neither active anymore, stopped planning to restart my activity and removed my permissions on this repository. It is possible that I will contribute again to this or another map style. * order by retirement time --- CODE_OF_CONDUCT.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e1d6c14184..e2bf415441 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -62,7 +62,7 @@ When using the OpenStreetMap Carto spaces you should act in the spirit of the va The OpenStreetMap Carto maintainers are responsible for handling conduct-related issues. Their goal is to de-escalate conflicts and try to resolve issues to the satisfaction of all parties. -If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,penorman@mac.com,matkoniecz@gmail.com,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). +If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,penorman@mac.com,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). **Note that the goal of the Code of Conduct and the maintainers is to resolve conflicts in the most harmonious way possible.** We hope that in most cases issues may be resolved through polite discussion and mutual agreement. Bans and other forceful measures are to be employed only as a last resort. diff --git a/README.md b/README.md index 472b9e04cc..dbeb78e2b7 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,6 @@ maps using Mapnik, many based on this project. Some alternatives are: * Andy Allan [@gravitystorm](https://github.com/gravitystorm/) * Paul Norman [@pnorman](https://github.com/pnorman/) -* Mateusz Konieczny [@matkoniecz](https://github.com/matkoniecz/) * Daniel Koć [@kocio-pl](https://github.com/kocio-pl) * Christoph Hormann [@imagico](https://github.com/imagico) * Lukas Sommer [@sommerluk](https://github.com/sommerluk) @@ -102,5 +101,6 @@ maps using Mapnik, many based on this project. Some alternatives are: ## Previous maintainers -* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) * Michael Glanznig [@nebulon42](https://github.com/nebulon42) +* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) +* Mateusz Konieczny [@matkoniecz](https://github.com/matkoniecz/) From c69d8c753a5b52b6f0f9ed1084f37a950d6d7d5f Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Tue, 7 Jun 2022 08:28:30 -0700 Subject: [PATCH 46/55] Update my email (#4569) --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e2bf415441..bf9c45fbb0 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -62,7 +62,7 @@ When using the OpenStreetMap Carto spaces you should act in the spirit of the va The OpenStreetMap Carto maintainers are responsible for handling conduct-related issues. Their goal is to de-escalate conflicts and try to resolve issues to the satisfaction of all parties. -If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,penorman@mac.com,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). +If you encounter a conduct-related issue, you should report it to the maintainers by sending them [all an email](mailto:openstreetmap-carto@gravitystorm.co.uk,osm@paulnorman.ca,chris_hormann@gmx.de,daniel@xn--ko-wla.pl,sommerluk@gmail.com,joseph.eisenberg@gmail.com). **Note that the goal of the Code of Conduct and the maintainers is to resolve conflicts in the most harmonious way possible.** We hope that in most cases issues may be resolved through polite discussion and mutual agreement. Bans and other forceful measures are to be employed only as a last resort. From 6b31bbde2b0ae41fa763e4c896c39723efcf6053 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Tue, 7 Jun 2022 17:31:45 +0200 Subject: [PATCH 47/55] Upgrade URLs Fixed small inconsistencies in URLs. --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index bf9c45fbb0..9f8c8242c3 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -77,6 +77,6 @@ Changes to the Code of Conduct should be proposed as pull requests. ## Acknowledgements -This document is based on the [Go Code of Conduct](https://golang.org/conduct), which in turn has parts derived from the Code of Conduct documents of the Django, FreeBSD, and Rust projects. +This document is based on the [Go Community Code of Conduct](https://go.dev/conduct), which in turn has parts derived from the Code of Conduct documents of the Django, FreeBSD, and Rust projects. This documented is licensed under the Creative Commons Attribution 3.0 License. From 4a862a36a4d28c9f0243bda8733ca8da91ce0839 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Tue, 7 Jun 2022 17:48:48 +0200 Subject: [PATCH 48/55] Upgrade URLs Fixed small inconsistencies in URLs. Left workflow link as-is. --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 725ccf7c3e..2d0200500a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,13 +34,13 @@ images might not be sufficient and a demo layer is necessary. pnorman has a serv ## Easy pickings -Some [easy issues](https://github.com/gravitystorm/openstreetmap-carto/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) have been selected +Some [easy issues](labels/good%20first%20issue) have been selected that are particularly suitable for new contributors to get familiar with the project's code base and the contribution process. ## Editing layers OpenStreetMap Carto uses a YAML file for defining layers, because it [works much -better for big projects](https://github.com/gravitystorm/openstreetmap-carto/issues/711). +better for big projects](issues/711). This requires CartoCSS 0.18.0 or later. If you need JSON MML, you can generate it with `python -c 'import sys, yaml, json; json.dump(yaml.safe_load(sys.stdin), sys.stdout)' < project.mml > project.json` or the equivalent in a different language. @@ -148,8 +148,8 @@ Because SQL within JSON or YAML will not generally be syntax highlighted, indent ### External icon design resources The project's goals and design philsophy are different from other projects, but some external resources with general information about icon design are: -* [Maki Icons Design Guidelines](https://www.mapbox.com/maki-icons/guidelines/) -* [GNOME Icon Design Guildelines](https://developer.gnome.org/hig/stable/icons-and-artwork.html.en) +* [Maki Icons Design Guidelines](https://labs.mapbox.com/maki-icons/guidelines/) +* [GNOME Icon Design Guildelines](https://developer.gnome.org/hig/guidelines/ui-icons.html) ## Typography From b7726eda6fb2e63859165eccb1faa2218ade9098 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Tue, 7 Jun 2022 18:23:27 +0200 Subject: [PATCH 49/55] Upgrade and update URLs Fixed some small inconsistencies in URLs and updated all disfunctional links. Note, you may want to update the link for the database setup guide to [a newer version of Ubuntu](https://wiki.ubuntu.com/Releases). --- INSTALL.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 974260e74e..dd2ea838df 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,9 +1,9 @@ # Installation -This document describes how to manually configure your system for running OpenStreetMap Carto. If you prefer quick, platform independent setup for a development environment, without the need to install and configure tools by hand, follow a Docker installation guide in [DOCKER.md](https://github.com/gravitystorm/openstreetmap-carto/blob/master/DOCKER.md). +This document describes how to manually configure your system for running OpenStreetMap Carto. If you prefer quick, platform independent setup for a development environment, without the need to install and configure tools by hand, follow a Docker installation guide in [DOCKER.md](DOCKER.md). ## OpenStreetMap data -You need OpenStreetMap data loaded into a PostGIS database (see below for [dependencies](#dependencies)). These stylesheets expect a database generated with osm2pgsql using the pgsql backend (table names of `planet_osm_point`, etc), the default database name (`gis`), and the [lua transforms](https://github.com/openstreetmap/osm2pgsql/blob/master/docs/lua.md) documented in the instructions below. +You need OpenStreetMap data loaded into a PostGIS database (see below for [dependencies](#dependencies)). These stylesheets expect a database generated with osm2pgsql using the pgsql backend (table names of `planet_osm_point`, etc), the default database name (`gis`), and the [lua transforms](https://osm2pgsql.org/doc/manual.html#lua-tag-transformations) documented in the instructions below. Start by creating a database @@ -24,7 +24,7 @@ then grab some OSM data. It's probably easiest to grab an PBF of OSM data from [ osm2pgsql -G --hstore --style openstreetmap-carto.style --tag-transform-script openstreetmap-carto.lua -d gis ~/path/to/data.osm.pbf ``` -You can find a more detailed guide to setting up a database and loading data with osm2pgsql at [switch2osm.org](https://switch2osm.org/manually-building-a-tile-server-16-04-2-lts/). +You can find a more detailed guide to setting up a database and loading data with osm2pgsql at [switch2osm.org](https://switch2osm.org/serving-tiles/manually-building-a-tile-server-16-04-2-lts/). ### Custom indexes Custom indexes are required for rendering performance and are essential on full planet databases. @@ -65,9 +65,9 @@ On Ubuntu 16.04 or Debian Testing you can download and install most of the requi sudo apt-get install fonts-noto-cjk fonts-noto-hinted fonts-noto-unhinted fonts-hanazono ttf-unifont ``` -Noto Emoji Regular (*not* Noto Color Emoji) can be downloaded [from the Noto Emoji repository](https://github.com/googlei18n/noto-emoji). +Noto Emoji Regular (*not* Noto Color Emoji) can be downloaded [from the Noto Emoji repository](https://github.com/googlefonts/noto-emoji). -It might be useful to have a more recent version of the fonts for [rare non-latin scripts](#non-latin-scripts). The current upstream font release has also some more scripts and style variants than in the Ubuntu package. It can be installed [from source](https://github.com/googlei18n/noto-fonts/blob/master/FAQ.md#where-are-the-fonts). +It might be useful to have a more recent version of the fonts for [rare non-latin scripts](#non-latin-scripts). The current upstream font release has also some more scripts and style variants than in the Ubuntu package. It can be installed [from source](https://github.com/googlefonts/noto-fonts/blob/master/FAQ.md#where-are-the-fonts). DejaVu is packaged as `fonts-dejavu-core`. @@ -75,8 +75,8 @@ DejaVu is packaged as `fonts-dejavu-core`. The fonts can be downloaded here: -* [Noto homepage](https://www.google.com/get/noto/) and [Noto github repositories](https://github.com/googlei18n?utf8=%E2%9C%93&q=noto) -* [DejaVu homepage](http://dejavu-fonts.org/) +* [Noto homepage](https://www.google.com/get/noto/) and [Noto github repositories](https://github.com/googlefonts?utf8=%E2%9C%93&q=noto) +* [DejaVu homepage](https://dejavu-fonts.org/) * [Hanazono homepage](http://fonts.jp/hanazono/) * [Unifont homepage](http://unifoundry.com/) @@ -101,7 +101,7 @@ To display any map a database containing OpenStreetMap data and some utilities a * [PostgreSQL](https://www.postgresql.org/) * [PostGIS](https://postgis.net/) -* [osm2pgsql](https://github.com/openstreetmap/osm2pgsql#installing) to [import your data](https://switch2osm.org/loading-osm-data/) into a PostGIS database +* [osm2pgsql](https://github.com/openstreetmap/osm2pgsql#installing) to [import your data](https://switch2osm.org/serving-tiles/updating-as-people-edit/) into a PostGIS database * Python 3 with the psycopg2, yaml, and requests libraries (`python3-psycopg2` `python3-yaml` `python3-requests` packages on Debian-derived systems) * `ogr2ogr` for loading shapefiles into the database (`gdal-bin` on Debian-derived systems) @@ -110,7 +110,7 @@ To display any map a database containing OpenStreetMap data and some utilities a Some colours, SVGs and other files are generated with helper scripts. Not all users will need these dependencies * Python and Ruby to run helper scripts -* [Color Math](https://github.com/gtaylor/python-colormath) and [numpy](http://www.numpy.org/) if running generate_road_colors.py helper script (may be obtained with `pip install colormath numpy`) +* [Color Math](https://github.com/gtaylor/python-colormath) and [numpy](https://numpy.org/) if running generate_road_colors.py helper script (may be obtained with `pip install colormath numpy`) ### Additional deployment dependencies From 59e89bad74306591c9a788be58ccc7eef97fb8b0 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Tue, 7 Jun 2022 19:30:05 +0200 Subject: [PATCH 50/55] Upgrade and simplify URLs Fixed some small inconsistencies in URLs and simplified reference links which are only called once. Alternatively, you may use the tile usage policy link between the parentheses instead of the tiles 'link'. "`OSMF tileservers ([Tile Usage Policy](https://operations.osmfoundation.org/policies/tiles/))`" For Mapnik (XML) stylesheets, also the link "`[Community list of Mapnik stylesheets](https://github.com/mapnik/mapnik/wiki/StyleShare)`" could be added. ( from https://wiki.openstreetmap.org/wiki/Stylesheets ) --- README.md | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index dbeb78e2b7..a1542d0a37 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![screenshot](https://raw.github.com/gravitystorm/openstreetmap-carto/master/preview.png) -These are the CartoCSS map stylesheets for the Standard map layer on [OpenStreetMap.org](https://www.openstreetmap.org). +These are the CartoCSS map stylesheets for the Standard map layer on [OpenStreetMap.org](https://www.openstreetmap.org/). The general purpose, the cartographic design goals and guidelines for this style are outlined in [CARTOGRAPHY.md](CARTOGRAPHY.md). @@ -10,7 +10,7 @@ These stylesheets can be used in your own cartography projects, and are designed to be easily customised. They work with [Kosmtik](https://github.com/kosmtik/kosmtik) and also with the command-line [CartoCSS](https://github.com/mapbox/carto) processor. -Since August 2013 these stylesheets have been used on the OSMF tileservers (tile.openstreetmap.org), and +Since August 2013 these stylesheets have been used on the [OSMF tileservers](https://operations.osmfoundation.org/policies/tiles/) (tile.openstreetmap.org), and are updated from each point release. They supersede the previous [XML-based stylesheets](https://github.com/openstreetmap/mapnik-stylesheets). # Installation @@ -60,14 +60,11 @@ versions. Care has been taken to not get too clever with variables and expressions. While these often make it easier to customise, experience has shown that over-cleverness -(e.g. [interpolated entities][cleverness]) can discourage contributions. - -[issues]: https://github.com/gravitystorm/openstreetmap-carto/issues -[cleverness]: https://github.com/openstreetmap/mapnik-stylesheets/blob/master/inc/settings.xml.inc.template#L16 +(e.g. [interpolated entities](https://github.com/openstreetmap/mapnik-stylesheets/blob/master/inc/settings.xml.inc.template#L16)) can discourage contributions. ## Database schema change (v4.x) -The v4.x series includes [osm2pgsql lua transforms](https://github.com/openstreetmap/osm2pgsql/blob/master/docs/lua.md) +The v4.x series includes [osm2pgsql lua transforms](https://osm2pgsql.org/doc/manual.html#lua-tag-transformations) and a hstore column with all other tags, allowing use of more OpenStreetMap data. Users need to reload their databases, v3.x compatibility is not maintained. @@ -76,7 +73,7 @@ to reload their databases, v3.x compatibility is not maintained. The v5.x series updates Lua tag transforms, linestring and polygon decisions have changed. -There are over [500 open requests][issues], some that have been open for years. +There are over [500 open requests](issues), some that have been open for years. These need reviewing and dividing into obvious fixes, or additional new features that need some cartographic judgement. @@ -85,15 +82,15 @@ that need some cartographic judgement. There are many open-source stylesheets written for creating OpenStreetMap-based maps using Mapnik, many based on this project. Some alternatives are: -* [OSM-Bright](https://github.com/mapbox/osm-bright) -* [XML-based stylesheets](https://trac.openstreetmap.org/browser/subversion/applications/rendering/mapnik) -* [osmfr-cartocss](https://github.com/cquest/osmfr-cartocss) -* [openstreetmap-carto-german](https://github.com/giggls/openstreetmap-carto-de) +* [OSM Bright](https://github.com/mapbox/osm-bright) +* [XML-based stylesheets](https://github.com/openstreetmap/mapnik-stylesheets) +* [OpenStreetMap "FR" Carto](https://github.com/cquest/osmfr-cartocss) +* [OpenStreetMap Carto German](https://github.com/giggls/openstreetmap-carto-de) # Maintainers -* Andy Allan [@gravitystorm](https://github.com/gravitystorm/) -* Paul Norman [@pnorman](https://github.com/pnorman/) +* Andy Allan [@gravitystorm](https://github.com/gravitystorm) +* Paul Norman [@pnorman](https://github.com/pnorman) * Daniel Koć [@kocio-pl](https://github.com/kocio-pl) * Christoph Hormann [@imagico](https://github.com/imagico) * Lukas Sommer [@sommerluk](https://github.com/sommerluk) @@ -102,5 +99,5 @@ maps using Mapnik, many based on this project. Some alternatives are: ## Previous maintainers * Michael Glanznig [@nebulon42](https://github.com/nebulon42) -* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen/) -* Mateusz Konieczny [@matkoniecz](https://github.com/matkoniecz/) +* Matthijs Melissen [@matthijsmelissen](https://github.com/matthijsmelissen) +* Mateusz Konieczny [@matkoniecz](https://github.com/matkoniecz) From 11a05f7805eb6c5921ba28c8fcc31ca2be5d2a91 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Thu, 9 Jun 2022 22:47:31 +0200 Subject: [PATCH 51/55] Upgrade URL --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index b3ce9b77f5..c99bb1b905 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -6,7 +6,7 @@ Throughout this document, replace $OLD_VERSION with the previous release and $NE 1. Update your local master branch 2. Review the changes in git since the last release with a command like `git log --graph $OLD_VERSION...master` or online at https://github.com/gravitystorm/openstreetmap-carto/compare/$OLD_VERSION...master -3. Review [pull requests](https://github.com/gravitystorm/openstreetmap-carto/pulls) for anything that should be merged before release +3. Review [pull requests](pulls) for anything that should be merged before release 4. Check [`preview.png`](preview.png) and update it if needed. Preferred way is to import current Chicago data, export new image (for example from Kosmtik via [this link](http://127.0.0.1:6789/openstreetmap-carto/export/?showExtent=true&format=png&width=849&height=310&scale=1&zoom=15&bounds=-87.65145778656006%2C41.86914537674214%2C-87.61502265930177%2C41.8790515319021)) and upload as new version of this file Decide among the maintainers if a new release is due. From 47ad08b8cc89a0afb181e984cd843a626536a982 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Thu, 9 Jun 2022 23:03:17 +0200 Subject: [PATCH 52/55] Upgrade URLs --- DOCKER.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DOCKER.md b/DOCKER.md index 0fc7418cf6..0e076e6a8f 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -1,13 +1,13 @@ # Running OpenStreetMap Carto with Docker -[Docker](https://docker.com) is a virtualized environment running a [_Docker demon_](https://docs.docker.com/engine/docker-overview), in which you can run software without altering your host system permanently. The software components run in _containers_ that are easy to setup and tear down individually. The Docker demon can use operating-system-level virtualization (Linux, Windows) or a virtual machine (macOS, Windows). +[Docker](https://www.docker.com/) is a virtualized environment running a [_Docker demon_](https://docs.docker.com/get-started/overview/), in which you can run software without altering your host system permanently. The software components run in _containers_ that are easy to setup and tear down individually. The Docker demon can use operating-system-level virtualization (Linux, Windows) or a virtual machine (macOS, Windows). This allows to set up a development environment for OpenStreetMap Carto easily. Specifically, this environment consists of a PostgreSQL database to store the OpenStreetMap data and [Kosmtik](https://github.com/kosmtik/kosmtik) for previewing the style. ## Prerequisites -Docker is available for Linux, macOS and Windows. [Install](https://www.docker.com/get-docker) the software packaged for your host system in order +Docker is available for Linux, macOS and Windows. [Install](https://www.docker.com/products/docker-desktop/) the software packaged for your host system in order to be able to run Docker containers. You also need Docker Compose, which should be available once you installed Docker itself. Otherwise you need to [install Docker Compose manually](https://docs.docker.com/compose/install/). @@ -29,7 +29,7 @@ Read on below to get the details. ## Repositories -Instructions above will clone main OpenStreetMap Carto repository. To test your own changes you should [fork](https://help.github.com/articles/fork-a-repo/) gravitystorm/openstreetmap-carto repository and [clone your fork](https://help.github.com/articles/cloning-a-repository/). +Instructions above will clone main OpenStreetMap Carto repository. To test your own changes you should [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) gravitystorm/openstreetmap-carto repository and [clone your fork](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository). This OpenStreetMap Carto repository needs to be a directory that is shared between your host system and the Docker virtual machine. Home directories are shared by default; if your repository is in another place you need to add this to the Docker sharing list (e.g. macOS: Docker Preferences > File Sharing; Windows: Docker Settings > Shared Drives). From 44e043fc81fa51739a8acacfae6a7a6f8c2210c8 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Fri, 10 Jun 2022 20:55:26 +0200 Subject: [PATCH 53/55] Fix URLs --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d0200500a..54a26707e6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,13 +34,13 @@ images might not be sufficient and a demo layer is necessary. pnorman has a serv ## Easy pickings -Some [easy issues](labels/good%20first%20issue) have been selected +Some [easy issues](https://github.com/gravitystorm/openstreetmap-carto/labels/good%20first%20issue) have been selected that are particularly suitable for new contributors to get familiar with the project's code base and the contribution process. ## Editing layers OpenStreetMap Carto uses a YAML file for defining layers, because it [works much -better for big projects](issues/711). +better for big projects](https://github.com/gravitystorm/openstreetmap-carto/issues/711). This requires CartoCSS 0.18.0 or later. If you need JSON MML, you can generate it with `python -c 'import sys, yaml, json; json.dump(yaml.safe_load(sys.stdin), sys.stdout)' < project.mml > project.json` or the equivalent in a different language. From bfb8a7cbfb2b9a27a066bf56ece76b1473213013 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Fri, 10 Jun 2022 21:02:12 +0200 Subject: [PATCH 54/55] Fix URL Permalink for mapnik-stylesheets template line, just fyi (the existing link with `master` seems fine). https://github.com/openstreetmap/mapnik-stylesheets/blob/236f8d0ab17b792300679cedf9afa5b0feab301b/inc/settings.xml.inc.template#L16 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1542d0a37..498342abe8 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ to reload their databases, v3.x compatibility is not maintained. The v5.x series updates Lua tag transforms, linestring and polygon decisions have changed. -There are over [500 open requests](issues), some that have been open for years. +There are over [500 open requests](https://github.com/gravitystorm/openstreetmap-carto/issues), some that have been open for years. These need reviewing and dividing into obvious fixes, or additional new features that need some cartographic judgement. From 7745a7c4a70b08a8f9775838c93fcaff95331c1d Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Fri, 10 Jun 2022 21:03:47 +0200 Subject: [PATCH 55/55] Fix URL --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index c99bb1b905..b3ce9b77f5 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -6,7 +6,7 @@ Throughout this document, replace $OLD_VERSION with the previous release and $NE 1. Update your local master branch 2. Review the changes in git since the last release with a command like `git log --graph $OLD_VERSION...master` or online at https://github.com/gravitystorm/openstreetmap-carto/compare/$OLD_VERSION...master -3. Review [pull requests](pulls) for anything that should be merged before release +3. Review [pull requests](https://github.com/gravitystorm/openstreetmap-carto/pulls) for anything that should be merged before release 4. Check [`preview.png`](preview.png) and update it if needed. Preferred way is to import current Chicago data, export new image (for example from Kosmtik via [this link](http://127.0.0.1:6789/openstreetmap-carto/export/?showExtent=true&format=png&width=849&height=310&scale=1&zoom=15&bounds=-87.65145778656006%2C41.86914537674214%2C-87.61502265930177%2C41.8790515319021)) and upload as new version of this file Decide among the maintainers if a new release is due.