diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/changelog openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/changelog --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/changelog 2014-09-15 03:27:27.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/changelog 2014-09-15 17:36:45.000000000 +0000 @@ -1,3 +1,9 @@ +openstreetmap-mapnik-carto-stylesheet-data (2.20.1-1~trusty2) trusty; urgency=low + + * fix issue with post install script + + -- Kai Krueger Mon, 15 Sep 2014 11:00:00 +0000 + openstreetmap-mapnik-carto-stylesheet-data (2.20.1-1~trusty1) trusty; urgency=low * updated upstream diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/openstreetmap-mapnik-carto-stylesheet-data.postinst openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/openstreetmap-mapnik-carto-stylesheet-data.postinst --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/openstreetmap-mapnik-carto-stylesheet-data.postinst 2014-09-15 03:27:27.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/debian/openstreetmap-mapnik-carto-stylesheet-data.postinst 2014-09-15 17:36:45.000000000 +0000 @@ -14,8 +14,11 @@ DLOAD_COAST=$RET if [ "x$DLOAD_COAST" = "xtrue" ] ; then - ln -s /usr/share/mapnik-osm-carto-data /etc/mapnik-osm-carto-data/data /usr/bin/openstreetmap-get-coastline-shapefiles /usr/share/mapnik-osm-carto-data || true + if [ -d /usr/share/mapnik-osm-carto-data ] && [ ! -d /etc/mapnik-osm-carto-data/data ]; then + ln -s /usr/share/mapnik-osm-carto-data /etc/mapnik-osm-carto-data/data + fi + fi true ;; diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/addressing.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/addressing.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/addressing.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/addressing.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,49 @@ +#interpolation { + [zoom >= 17] { + line-color: #888; + line-width: 1; + line-dasharray: 2,4; + } +} + +#housenumbers { + [zoom >= 17] { + text-name: "[addr:housenumber]"; + text-placement: interior; + text-min-distance: 1; + text-wrap-width: 0; + text-face-name: @book-fonts; + text-fill: #444; + text-size: 9; + } +} + +#housenames { + [zoom >= 17] { + text-name: "[addr:housename]"; + text-placement: interior; + text-wrap-width: 20; + text-face-name: @book-fonts; + text-size: 8; + text-fill: #444; + [zoom >= 18] { + text-size: 9; + } + } +} + +#building-text { + [way_area >= 150000][zoom >= 14], + [way_area >= 80000][zoom >= 15], + [way_area >= 20000][zoom >= 16], + [zoom >= 17] { + text-name: "[name]"; + text-size: 11; + text-fill: #444; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-halo-fill: rgba(255,255,255,0.5); + text-placement: interior; + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/admin.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/admin.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/admin.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/admin.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,117 @@ +@admin-boundaries: #ac46ac; + +#admin-01234 { + [admin_level = '2'], + [admin_level = '3'] { + [zoom >= 4] { + line-color: @admin-boundaries; + line-width: 0.6; + } + [zoom >= 7] { + line-width: 2; + } + [zoom >= 10] { + [admin_level = '2'] { + line-width: 6; + } + [admin_level = '3'] { + line-width: 5; + line-dasharray: 4,2; + line-clip: false; + } + } + } + [admin_level = '4'] { + [zoom >= 4] { + line-color: @admin-boundaries; + line-width: 0.6; + line-dasharray: 4,3; + line-clip: false; + } + [zoom >= 7] { + line-width: 1; + } + [zoom >= 11] { + line-width: 3; + } + } + opacity: 0.4; +} + +#admin-5678 { + [admin_level = '5'][zoom >= 11] { + line-color: @admin-boundaries; + line-width: 2; + line-dasharray: 6,3,2,3,2,3; + line-clip: false; + } + [admin_level = '6'][zoom >= 11] { + line-color: @admin-boundaries; + line-width: 2; + line-dasharray: 6,3,2,3; + line-clip: false; + } + [admin_level = '7'], + [admin_level = '8'] { + [zoom >= 12] { + line-color: @admin-boundaries; + line-width: 1.5; + line-dasharray: 5,2; + line-clip: false; + } + } + opacity: 0.5; +} + +#admin-other { + [admin_level = '9'], + [admin_level = '10'] { + [zoom >= 13] { + line-color: @admin-boundaries; + line-width: 2; + line-dasharray: 2,3; + line-clip: false; + } + } + opacity: 0.5; +} + +#admin-text[zoom >= 16] { + text-name: "[name]"; + text-face-name: @book-fonts; + text-fill: @admin-boundaries; + text-placement: line; + text-halo-radius: 1.0; + text-placement: line; + text-dy: -10; +} + +#nature-reserve-boundaries { + [zoom >= 7] { + ::fill [zoom < 13] { + opacity: 0.05; + polygon-fill: green; + } + ::line { + opacity: 0.15; + line-color: green; + line-width: 1.5; + line-dasharray: 4,2; + [zoom >= 10] { + line-width: 3; + line-dasharray: 6,2; + line-join: bevel; + } + } + } + [way_area > 200000000][zoom >= 8][zoom < 12] { + text-name: "[name]"; + text-size: 8; + text-fill: #9c9; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-wrap-width: 14; + text-placement: interior; + [zoom >= 11] { text-size: 11; } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/aerialways.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/aerialways.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/aerialways.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/aerialways.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,20 @@ +#aerialways { + [aerialway = 'cable_car'], + [aerialway = 'gondola'], + [aerialway = 'goods'] { + [zoom >= 12] { + line-pattern-file: url('symbols/cable_car.png'); + } + } + + [aerialway = 'chair_lift'], + [aerialway = 'drag_lift'], + [aerialway = 't-bar'], + [aerialway = 'j-bar'], + [aerialway = 'platter'], + [aerialway = 'rope_tow'] { + [zoom >= 12] { + line-pattern-file: url('symbols/chair_lift.png'); + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-points.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-points.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-points.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-points.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,1204 @@ +@marina-text: #576ddf; // also swimming_pool +@military-text: #99001a; +@park-text: #2c4b2c; +@shop-icon: #ac39ac; +@transportation-icon: #0092da; +@transportation-text: #0066ff; + +.points { + [feature = 'tourism_alpine_hut'][zoom >= 13] { + point-file: url('symbols/alpinehut.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_shelter'][zoom >= 16] { + point-file: url('symbols/shelter2.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_atm'][zoom >=17] { + point-file: url('symbols/atm2.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_bank'][zoom >= 17] { + point-file: url('symbols/bank2.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_bar'][zoom >=17] { + point-file: url('symbols/bar.p.20.png'); + point-placement: interior; + } + + [feature = 'amenity_bicycle_rental'][zoom >= 17] { + point-file: url('symbols/rental_bicycle.p.20.png'); + point-placement: interior; + } + + [feature = 'highway_bus_stop'] { + [zoom >= 16] { + point-file: url('symbols/bus_stop_small.png'); + point-placement: interior; + } + [zoom >= 17] { + point-file: url('symbols/bus_stop.p.12.png'); + } + } + + [feature = 'amenity_bus_station'][zoom >= 16] { + point-file: url('symbols/bus_station.n.16.png'); + point-placement: interior; + } + + [feature = 'highway_traffic_signals'][zoom >= 17] { + point-file: url('symbols/traffic_light.png'); + point-placement: interior; + } + + [feature = 'amenity_cafe'][zoom >=17] { + point-file: url('symbols/cafe.p.16.png'); + point-placement: interior; + } + + [feature = 'tourism_camp_site'][zoom >= 16] { + point-file: url('symbols/camping.n.16.png'); + point-placement: interior; + } + + [feature = 'highway_ford'][zoom >= 16] { + point-file: url('symbols/transport_ford.p.16.png'); + point-placement: interior; + } + + [feature = 'tourism_caravan_site'][zoom >= 16] { + point-file: url('symbols/caravan_park.p.24.png'); + point-placement: interior; + } + + [feature = 'amenity_car_sharing'][zoom >= 16] { + point-file: url('symbols/car_share.p.16.png'); + point-placement: interior; + } + + [feature = 'tourism_chalet'][zoom >= 17] { + point-file: url('symbols/chalet.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_cinema'][zoom >= 16] { + point-file: url('symbols/cinema.p.24.png'); + point-placement: interior; + } + + [feature = 'amenity_fire_station'][zoom >= 16] { + point-file: url('symbols/firestation.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_fuel'][zoom >= 17] { + point-file: url('symbols/fuel.p.16.png'); + point-placement: interior; + } + + [feature = 'tourism_guest_house'][zoom >= 17] { + point-file: url('symbols/guest_house.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_hospital'][zoom >= 15] { + point-file: url('symbols/hospital.p.16.png'); + point-placement: interior; + } + + [feature = 'tourism_hostel'][zoom >= 17] { + point-file: url('symbols/hostel.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_hotel'][zoom >= 17] { + point-file: url('symbols/hotel2.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_motel'][zoom >= 17] { + point-file: url('symbols/motel.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_information'][zoom >= 17] { + point-file: url('symbols/information.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_embassy'][zoom >= 17] { + point-file: url('symbols/embassy.png'); + point-placement: interior; + } + + [feature = 'amenity_library'][zoom >= 16] { + point-file: url('symbols/library.p.20.png'); + point-placement: interior; + } + + [feature = 'amenity_courthouse'][zoom > 16] { + point-file: url('symbols/amenity_court.p.20.png'); + point-placement: interior; + } + + [feature = 'waterway_lock'], + [feature = 'lock_yes'] { + [zoom >= 15] { + point-file: url('symbols/lock_gate.png'); + point-placement: interior; + } + } + + [feature = 'man_made_mast'][zoom >= 17] { + point-file: url('symbols/communications.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_museum'][zoom >= 16] { + point-file: url('symbols/museum.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_parking'][zoom >= 16] { + marker-file: url('symbols/parking.svg'); + marker-placement: interior; + marker-clip: false; + marker-fill: @transportation-icon; + [access != ''][access != 'public'][access != 'yes'] { + marker-opacity: 0.33; + } + } + + [feature = 'amenity_pharmacy'][zoom >= 17] { + point-file: url('symbols/pharmacy.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_place_of_worship'][zoom >= 16] { + point-file: url('symbols/place_of_worship3.p.16.png'); + point-placement: interior; + [religion = 'christian'] { + point-file: url('symbols/christian3.p.14.png'); + } + [religion = 'muslim'] { + point-file: url('symbols/islamic3.p.16.png'); + } + [religion = 'sikh'] { + point-file: url('symbols/sikh3.p.16.png'); + } + [religion = 'jewish'] { + point-file: url('symbols/jewish3.p.16.png'); + } + [religion = 'hindu'] { + point-file: url('symbols/hindu.png'); + } + [religion = 'buddhist'] { + point-file: url('symbols/buddhist.png'); + } + [religion = 'shinto'] { + point-file: url('symbols/shinto.png'); + } + [religion = 'taoist'] { + point-file: url('symbols/taoist.png'); + } + } + + [feature = 'amenity_police'][zoom >= 16] { + point-file: url('symbols/police.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_post_box'][zoom >= 17] { + point-file: url('symbols/post_box.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_post_office'][zoom >= 17] { + point-file: url('symbols/post_office.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_pub'][zoom >= 17] { + point-file: url('symbols/pub.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_biergarten'][zoom >= 17] { + point-file: url('symbols/biergarten.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_recycling'][zoom >= 16] { + point-file: url('symbols/recycling.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_restaurant'][zoom >= 17] { + point-file: url('symbols/restaurant.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_fast_food'][zoom >= 17] { + point-file: url('symbols/fast_food.png'); + point-placement: interior; + } + + [feature = 'amenity_telephone'][zoom >= 17] { + point-file: url('symbols/telephone.p.16.png'); + point-placement: interior; + } + + [feature = 'amenity_emergency_phone'][zoom >= 17] { + point-file: url('symbols/sosphone.png'); + point-placement: interior; + } + + [feature = 'amenity_theatre'][zoom >= 16] { + point-file: url('symbols/theatre.p.20.png'); + point-placement: interior; + } + + [feature = 'amenity_toilets'][zoom >= 17] { + point-file: url('symbols/toilets.p.20.png'); + point-placement: interior; + } + + [feature = 'amenity_drinking_water'][zoom >= 17] { + point-file: url('symbols/food_drinkingtap.p.20.png'); + point-placement: interior; + } + + [feature = 'amenity_prison'][zoom >= 17] { + point-file: url('symbols/amenity_prison.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_viewpoint'][zoom >= 16] { + point-file: url('symbols/view_point.p.16.png'); + point-placement: interior; + } + + [feature = 'man_made_water_tower'][zoom >= 17] { + point-file: url('symbols/tower_water.p.20.png'); + point-placement: interior; + } + + [feature = 'historic_memorial'][zoom >= 17] { + point-file: url('symbols/tourist_memorial.p.20.png'); + point-placement: interior; + } + + [feature = 'historic_archaeological_site'][zoom >= 16] { + point-file: url('symbols/tourist_archaeological2.glow.24.png'); + point-placement: interior; + } + + [feature = 'shop_other'][zoom >= 17] { + marker-file: url('symbols/shop.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_supermarket'][zoom >= 16] { + marker-file: url('symbols/shop_supermarket.svg'); + marker-placement: interior; + marker-clip: false; + marker-fill: @shop-icon; + } + + [feature = 'shop_bakery'][zoom >= 17] { + marker-file: url('symbols/shop_bakery.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_butcher'][zoom >= 17] { + marker-file: url('symbols/shop_butcher.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_clothes'], + [feature = 'shop_fashion'] { + [zoom >= 17] { + marker-file: url('symbols/shop_clothes.svg'); + marker-placement: interior; + marker-clip: false; + marker-fill: @shop-icon; + } + } + + [feature = 'shop_convenience'][zoom >= 17] { + marker-file: url('symbols/shop_convenience.svg'); + marker-placement: interior; + marker-clip: false; + marker-fill: @shop-icon; + } + + [feature = 'shop_department_store'][zoom >= 16] { + point-file: url('symbols/department_store.p.16.png'); + point-placement: interior; + } + + [feature = 'shop_doityourself'][zoom >= 17] { + marker-file: url('symbols/shop_diy.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_florist'][zoom >= 17] { + marker-file: url('symbols/florist.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_hairdresser'][zoom >= 17] { + marker-file: url('symbols/shop_hairdresser.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_car'][zoom >= 17] { + marker-file: url('symbols/shop_car.svg'); + marker-placement: interior; + marker-clip: false; + marker-fill: @shop-icon; + } + + [feature = 'shop_car_repair'][zoom >= 17] { + marker-file: url('symbols/shopping_car_repair.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'shop_bicycle'][zoom >= 17] { + marker-file: url('symbols/shopping_bicycle.p.16.png'); + marker-placement: interior; + marker-clip: false; + } + + [feature = 'leisure_playground'][zoom >= 17] { + point-file: url('symbols/playground.p.20.png'); + point-placement: interior; + } + + [feature = 'tourism_picnic_site'][zoom >= 16] { + point-file: url('symbols/picnic.p.16.png'); + point-placement: interior; + } + + [feature = 'leisure_picnic_table'][zoom >= 17] { + point-file: url('symbols/picnic.p.16.png'); + point-placement: interior; + } + + [feature = 'leisure_slipway'][zoom >= 17] { + point-file: url('symbols/transport_slipway.p.20.png'); + point-placement: interior; + } +} + + +.text { + [feature = 'place_island'][zoom >= 12] { + text-name: "[name]"; + text-fill: #000; + text-size: 9; + text-face-name: @oblique-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'amenity_pub'], + [feature = 'amenity_restaurant'], + [feature = 'amenity_cafe'], + [feature = 'amenity_fast_food'], + [feature = 'amenity_biergarten'] { + [zoom >= 17] { + text-name: "[name]"; + text-fill: #734a08; + text-size: 10; + text-dy: 9; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-wrap-width: 34; + text-placement: interior; + } + } + + [feature = 'amenity_bar'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 11; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'amenity_library'], + [feature = 'amenity_theatre'], + [feature = 'amenity_courthouse'] { + [zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 12; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-placement: interior; + } + } + + [feature = 'amenity_cinema'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 14; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'amenity_parking'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: @transportation-text; + text-dy: 9; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 34; + text-placement: interior; + [access != ''][access != 'public'][access != 'yes'] { + text-fill: #66ccaf; + } + } + + [feature = 'amenity_police'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 10; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-placement: interior; + } + + [feature = 'amenity_fire_station'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 9; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-placement: interior; + } + + [feature = 'amenity_place_of_worship'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #000033; + text-dy: 12; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-placement: interior; + } + + [feature = 'natural_wood'][zoom >= 15] { + text-name: "[name]"; + text-size: 10; + text-fill: darken(@wood, 50%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + + [feature = 'natural_peak'], + [feature = 'natural_volcano'] { + [zoom >= 13] { + text-name: "[name]"; + text-size: 10; + text-fill: brown; + text-dy: 7; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + ele/text-name: "[ele]"; + ele/text-size: 9; + ele/text-fill: brown; + ele/text-dy: 6; + ele/text-face-name: @oblique-fonts; + ele/text-halo-radius: 1; + ele/text-placement: interior; + [name != ''] { + ele/text-dy: 19; + } + } + } + + [feature = 'natural_cave_entrance'][zoom >= 15] { + text-name: "[name]"; + text-size: 10; + text-fill: brown; + text-dy: 9; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + + [feature = 'historic_memorial'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: brown; + text-dy: 13; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + + [feature = 'historic_archaeological_site'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: brown; + text-dy: 15; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + + [feature = 'natural_water'], + [feature = 'natural_lake'], + [feature = 'landuse_reservoir'], + [feature = 'landuse_basin'] { + [way_area >= 40000000][zoom >= 10], + [way_area >= 10000000][zoom >= 11], + [way_area >= 2400000][zoom >= 12], + [way_area >= 600000][zoom >= 13], + [way_area >= 150000][zoom >= 14], + [way_area >= 80000][zoom >= 15], + [way_area >= 20000][zoom >= 16], + [zoom >= 17] { + text-name: "[name]"; + text-size: 12; + text-fill: @water-text; + text-face-name: @oblique-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + } + + [feature = 'leisure_swimming_pool'] { + [zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: @marina-text; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'leisure_sports_centre'], + [feature = 'leisure_stadium'], + [feature = 'leisure_track'], + [feature = 'leisure_pitch'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@stadium, 30%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'leisure_playground'], + [feature = 'leisure_park'], + [feature = 'leisure_recreation_ground'], + [feature = 'landuse_recreation_ground'], + [feature = 'landuse_conservation'], + [feature = 'landuse_village_green'], + [feature = 'leisure_common'], + [feature = 'leisure_garden'], + [feature = 'leisure_golf_course'], + [feature = 'leisure_nature_reserve'] { + [way_area >= 150000][zoom >= 14], + [way_area >= 80000][zoom >= 15], + [way_area >= 20000][zoom >= 16], + [zoom >= 17] { + text-name: "[name]"; + text-size: 11; + text-fill: @park-text; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-halo-fill: rgba(255,255,255,0.6); + text-wrap-width: 30; + text-placement: interior; + } + } + + [feature = 'landuse_quarry'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #000; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_vineyard'], + [feature = 'landuse_orchard'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@vineyard, 50%); + text-face-name: @book-fonts; + // extra halo needed to overpower the cemetery polygon pattern + text-halo-radius: 1.5; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_cemetery'], + [feature = 'landuse_grave_yard'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@cemetery, 50%); + text-face-name: @book-fonts; + // extra halo needed to overpower the cemetery polygon pattern + text-halo-radius: 1.5; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_residential'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #000; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_garages'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@garages, 50%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_field'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@field, 50%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_meadow'], + [feature = 'landuse_grass'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@grass, 65%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_allotments'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@allotments, 60%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_forest'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@forest, 50%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_farm'], + [feature = 'landuse_farmland'], + [feature = 'landuse_farmyard'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@farmland, 70%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_retail'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@retail, 60%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_industrial'], + [feature = 'landuse_railway'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@industrial, 60%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_commercial'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@commercial, 60%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'landuse_brownfield'], + [feature = 'landuse_landfill'], + [feature = 'landuse_construction'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: darken(@construction, 50%); + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'natural_bay'][zoom >= 14] { + text-name: "[name]"; + text-size: 10; + text-fill: #6699cc; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + + [feature = 'natural_spring'][zoom >= 16] { + text-name: "[name]"; + text-size: 10; + text-fill: #6699cc; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + text-dy: 6; + } + + [feature = 'tourism_alpine_hut'][zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #6699cc; + text-dy: 10; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + [zoom >= 16] { + ele/text-name: "[ele]"; + ele/text-size: 8; + ele/text-fill: #6699cc; + ele/text-dy: 22; + ele/text-face-name: @oblique-fonts; + ele/text-halo-radius: 1; + ele/text-placement: interior; + } + } + + [feature = 'amenity_shelter'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: #6699cc; + text-dy: 10; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + ele/text-name: "[ele]"; + ele/text-size: 8; + ele/text-fill: #6699cc; + ele/text-dy: 22; + ele/text-face-name: @oblique-fonts; + ele/text-halo-radius: 1; + ele/text-placement: interior; + } + + [feature = 'amenity_bank'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: black; + text-dy: 9; + text-halo-radius: 1; + text-placement: interior; + text-face-name: @book-fonts; + } + + [feature = 'tourism_hotel'], + [feature = 'tourism_motel'], + [feature = 'tourism_hostel'], + [feature = 'tourism_chalet'] { + [zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #0066ff; + text-dy: 11; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + } + + [feature = 'amenity_embassy'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: #0066ff; + text-dy: 8; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'tourism_guest_house'][zoom >= 17] { + text-name: "[name]"; + text-size: 8; + text-fill: #0066ff; + text-dy: 10; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'tourism_bed_and_breakfast'][zoom >= 17] { + text-name: "[name]"; + text-size: 8; + text-fill: #0066ff; + text-dy: 8; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'amenity_fuel'], + [feature = 'amenity_bus_station'] { + [zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: @transportation-text; + text-dy: 9; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + } + + [feature = 'tourism_camp_site'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #0066ff; + text-dy: 15; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 70; + text-placement: interior; + } + + [feature = 'tourism_caravan_site'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #0066ff; + text-dy: 19; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 70; + text-placement: interior; + } + + [feature = 'waterway_lock'][zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-dy: 10; + text-fill: #0066ff; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 70; + text-placement: interior; + } + + [feature = 'leisure_marina'][zoom >= 15] { + text-name: "[name]"; + text-size: 8; + text-fill: @marina-text; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-placement: interior; + [zoom >= 17] { + text-size: 10; + } + } + + [feature = 'tourism_theme_park'][zoom >= 14] { + text-name: "[name]"; + text-size: 8; + text-fill: #734a08; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-placement: interior; + [zoom >= 16] { + text-size: 10; + } + } + + [feature = 'tourism_museum'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-dy: 10; + text-fill: #734a08; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'amenity_prison'][zoom >= 17] { + text-name: "[name]"; + text-size: 10; + text-fill: #734a08; + text-dy: 16; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [feature = 'tourism_attraction'][zoom >= 16] { + text-name: "[name]"; + text-size: 10; + text-fill: #660033; + text-face-name: @book-fonts; + text-halo-radius: 2; + text-wrap-width: 10; + text-placement: interior; + } + + [feature = 'amenity_university'][zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #000033; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-wrap-width: 16; + text-placement: interior; + } + + [feature = 'amenity_school'], + [feature = 'amenity_college'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #000033; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 14; + text-placement: interior; + } + } + + [feature = 'amenity_kindergarten'][zoom >= 16] { + text-name: "[name]"; + text-size: 8; + text-fill: #000033; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 14; + text-placement: interior; + } + + [feature = 'man_made_lighthouse'][zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: #000033; + text-dy: 16; + text-face-name: @book-fonts; + text-halo-radius: 2; + text-wrap-width: 12; + text-placement: interior; + } + + [feature = 'man_made_windmill'][zoom >= 17] { + text-name: "[name]"; + text-size: 9; + text-fill: #734a08; + text-dy: 12; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + + [feature = 'amenity_hospital'][zoom >= 16] { + text-name: "[name]"; + text-fill: #da0092; + text-size: 8; + text-dy: 10; + text-face-name: @book-fonts; + text-halo-radius: 2; + text-wrap-width: 24; + text-placement: interior; + } + + [feature = 'amenity_pharmacy'][zoom >= 17] { + text-name: "[name]"; + text-size: 8; + text-dy: 10; + text-fill: #da0092; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 12; + text-placement: interior; + } + + /* Default shop text style */ + [feature = 'shop_other'][zoom >= 17] { + text-name: [name]; + text-size: 9; + text-dy: 10; + text-fill: #939; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 12; + text-placement: interior; + } + + [feature = 'shop_bakery'], + [feature = 'shop_clothes'], + [feature = 'shop_fashion'], + [feature = 'shop_convenience'], + [feature = 'shop_doityourself'], + [feature = 'shop_hairdresser'], + [feature = 'shop_butcher'], + [feature = 'shop_car'], + [feature = 'shop_car_repair'], + [feature = 'shop_bicycle'], + [feature = 'shop_florist'] { + [zoom >= 17] { + text-name: "[name]"; + text-size: 8; + text-dy: 10; + text-fill: #939; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 12; + text-placement: interior; + } + } + + [feature = 'shop_supermarket'], + [feature = 'shop_department_store'] { + [zoom >= 16] { + text-name: "[name]"; + text-size: 9; + text-dy: 11; + text-fill: #939; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 20; + text-placement: interior; + } + } + + [feature = 'military_danger_area'][zoom >= 12] { + text-name: "[name]"; + text-size: 9; + text-fill: @military-text; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + + [feature = 'landuse_military'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 9; + text-fill: @military-text; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } + } + + [feature = 'aeroway_gate'][zoom >= 17] { + text-name: "[ref]"; + text-size: 10; + text-fill: #aa66cc; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 10; + text-placement: interior; + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-symbols.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-symbols.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-symbols.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/amenity-symbols.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,110 @@ +.symbols { + [aeroway = 'helipad'][zoom >= 16]::aeroway { + point-file: url('symbols/helipad.p.16.png'); + text-name: "[name]"; + text-size: 8; + text-fill: #6692da; + text-dy: -10; + text-face-name: @bold-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [aeroway = 'aerodrome'][zoom >= 10][zoom < 13]::aeroway { + [zoom < 11] { + point-file: url('symbols/aerodrome.p.16.png'); + text-dy: -12; + } + text-name: "[name]"; + text-size: 8; + text-fill: #6692da; + text-face-name: @oblique-fonts; + text-halo-radius: 1; + text-placement: interior; + } + + [railway = 'level_crossing'][zoom >= 14]::railway { + point-file: url('symbols/level_crossing.png'); + point-placement: interior; + [zoom >= 16] { + point-file: url('symbols/level_crossing2.png'); + } + } + + [man_made = 'lighthouse'][zoom >= 15]::man_made { + point-file: url('symbols/lighthouse.p.20.png'); + point-placement: interior; + } + + [natural = 'peak'][zoom >= 11]::natural { + point-file: url('symbols/peak.png'); + point-placement: interior; + } + + [natural = 'volcano'][zoom >= 11]::natural { + point-file: url('symbols/volcano.png'); + point-placement: interior; + } + + [natural = 'cave_entrance'][zoom >= 15]::natural { + point-file: url('symbols/poi_cave.p.16.png'); + point-placement: interior; + } + + [natural = 'spring'][zoom >= 14]::natural { + point-file: url('symbols/spring.png'); + point-placement: interior; + } + + [natural = 'tree'][zoom >= 16]::natural { + point-file: url('symbols/tree.png'); + point-ignore-placement: true; + point-placement: interior; + [zoom >= 17] { + point-file: url('symbols/tree2.png'); + } + } + + [power = 'generator']['generator:source' = 'wind']::power, + [power = 'generator'][power_source = 'wind']::power { + [zoom >= 15] { + point-file: url('symbols/power_wind.png'); + point-placement: interior; + } + } + + [man_made = 'windmill'][zoom >= 16]::man_made { + point-file: url('symbols/windmill.png'); + point-placement: interior; + } + + [man_made = 'mast'][zoom >= 17]::man_made { + point-file: url('symbols/communications.p.20.png'); + point-placement: interior; + } + + [highway = 'mini_roundabout'][zoom >= 16]::highway { + point-file: url('symbols/mini_round.png'); + point-placement: interior; + } + + [barrier = 'gate']::barrier { + [zoom >= 15] { + point-file: url('symbols/gate2.png'); + point-placement: interior; + } + } + + [barrier = 'lift_gate'][zoom >= 16]::barrier { + point-file: url('symbols/liftgate.png'); + point-placement: interior; + } + + [barrier = 'bollard'], + [barrier = 'block'] { + [zoom >= 16] { + point-file: url('symbols/bollard.png'); + point-placement: interior; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/buildings.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/buildings.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/buildings.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/buildings.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,58 @@ +@building: #bca9a9; +@station: #d4aaaa; +@supermarket: pink; +@placeOfWorship: #777; +@terminal: #cc99ff; + +#buildings-lz { + [zoom >= 10] { + [railway = 'station']::railway, + [building = 'station'] { + polygon-fill: @station; + polygon-clip: false; + } + + [building = 'supermarket'] { + polygon-fill: @supermarket; + polygon-opacity: 0.5; + polygon-clip: false; + } + + [amenity = 'place_of_worship']::amenity { + polygon-opacity: 0.5; + polygon-fill: @placeOfWorship; + polygon-clip: false; + [zoom >= 15] { + polygon-opacity: 0.9; + polygon-fill: lighten(@placeOfWorship, 20%); + line-width: 0.3; + line-color: darken(@placeOfWorship, 40%); + } + } + } +} + +#buildings { + [building = 'INT-light'][zoom >= 12] { + polygon-fill: @building; + polygon-opacity: 0.7; + polygon-clip: false; + } + [building != 'INT-light'][building != ''][zoom >= 12] { + polygon-fill: @building; + polygon-opacity: 0.9; + polygon-clip: false; + [zoom >= 16] { + line-color: saturate(darken(@building, 50%), 10%); + line-width: 0.2; + } + } + [aeroway = 'terminal'][zoom >= 12]::aeroway { + polygon-fill: @terminal; + polygon-clip: false; + [zoom >= 14] { + line-color: saturate(darken(@terminal, 50%), 20%); + line-width: 0.2; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CARTOGRAPHY.md openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CARTOGRAPHY.md --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CARTOGRAPHY.md 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CARTOGRAPHY.md 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,37 @@ +# Cartography + +This is a style that serves multiple purposes, so here are some guidelines when considering cartographic changes. + +## Purposes + +There are multiple primary purposes of the map style, which pull in different directions + +* It's the primary feedback mechanism for mappers to validate their edits - so detail is useful +* It's a major part of the impression visitors to osm.org receive - so clear design is useful +* It's an examplar stylesheet for rendering OSM data - so easy customisation is useful + +It must always be borne in mind that a map style cannot show every detail of the OSM data, and in many cases it is more appropriate to show the detail in other, more specialist styles. + +## Colours + +Firstly, this is a map, not merely a colourful 2-dimensional visualisation of the database. Colours should be chosen based on their effectiveness and to make things look nice, not chosen for distinctiveness. + +The colour palette should be moving towards pastel/light/desaturated for background layers, midtones for streets and save highlights/bolds/saturated for points of interest. If colourspace can be left unused, that enables overlays for third parties. + +Colour definitions should, where useful, be put into variables at the top of the file, to enable easier customisation. + +## Data manipulation + +OpenStreetMap data has to be manipulated for rendering, but since this style is intended for use by mappers to check their work, it should minimise any distortions. For example, line-smoothing improves the look of railways and rivers, but introduces confusion for mappers. Post processing of geometries can improve the cartographic results, but breaks the cause-and-effect between editing the data and seeing the results. + +For similar reasons, use of external non-OSM data should be avoided. + +## Legibility + +I mean this not only in terms of font size, but in the ability of users to be able to "read" the map style. For example, a user might not be familiar with our exact road colours, but should be able to understand their relative importance via intensity of colour, width or other attributes. Important features should be more easily spotted and understood than less important information. It should be possible to gain an understanding of the majority of the map without using a legend. + +## The Mapper Feedback Loop + +If you thought that mappers were happy just to press "Save" on their editor, you'd be wrong. A key part of their feedback loop - to reassure them their work has been saved, and also to check that they have mapped 'correctly' - is waiting to see the results of their mapping on the main map layer on www.osm.org + +While this desire is in obvious conflict with the above comments on level of detail, it has a second impact on the map style. We need to, wherever possible, avoid accidentally encouraging mistakes - that is, avoiding the situation where a clearly misspelled or misused tag leads to the originally expected result. So `highway=mtorway` shouldn't show up as if it was `highway=motorway`, and so on. This has been a problem with "catch-all" rules in queries and filters, such as `where leisure is not null` or `[amenity != ""]`. Avoid these situations. \ No newline at end of file diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/citywalls.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/citywalls.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/citywalls.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/citywalls.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,24 @@ +#citywalls { + [zoom >= 14] { + line-color: grey; + line-width: 4; + line-opacity: 0.8; + [zoom >= 15] { + line-width: 6; + } + [zoom >= 16] { + line-width: 9; + } + } +} + +.castlewalls { + [zoom >= 14] { + line-color: #999; + line-width: 1; + } + [zoom >= 16] { + line-color: #888; + line-width: 2; + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CONTRIBUTING.md openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CONTRIBUTING.md --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CONTRIBUTING.md 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/CONTRIBUTING.md 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,55 @@ +# OpenStreetMap Carto contribution guidelines + +## Workflow + +We operate the "Fork & Pull" model explained at + +https://help.github.com/articles/using-pull-requests + +You should fork the project into your own repo, create a topic branch +there and then make one or more pull requests back to the gravitystorm repository. +Your pull requests will then be reviewed and discussed. + +## CartoCSS Style Guidelines + +* Always specify zoom levels as either >= or < . Don't use = or =< or > +* Open curly braces on the same line, and close on an empty line. +* One space before and after = etc +* Two space indents. No tabs. +* space after : but not before +* Dashes, not underscores, in layer names +* Name SQL subqueries after the layer name (but use underscores) +* Avoid restating defaults, e.g. don't add `point-allow-overlap = false` +* Avoid repeating the layer name for layers with mutiple attachments, i.e., prefer + +```css +#layer { + ::outline { + line-width: 6; + line-color: black; + } + ::inline { + line-width: 2; + line-color: white; + } +} +``` +instead of + +```css +#layer::outline { + line-width: 6; + line-color: black; +} +#layer::inline { + line-width: 2; + line-color: white; +} +``` +* Order the selectors in a style-sheet in rough order of importance (i.e., highway=primary, then highway=secondary) and beyond that, add layers that are rendered later (i.e., higher) lower in the file. + +## Previews + +Some changes benefit from a review from a wider audience. In most cases some static images are sufficient, but sometimes a demo layer is necessary. pnorman has a private server which can host layers and has some data from parts of the world loaded. Before requesting this in a pull request, make sure that you don't anticipate any more changes to it. + +This does not replace reviewing your changes in Tilemill diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/ferry-routes.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/ferry-routes.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/ferry-routes.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/ferry-routes.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,11 @@ +#ferry-routes { + [zoom >= 7] { + line-color: #66f; + line-width: 0.4; + line-dasharray: 4,4; + [zoom >= 11] { + line-width: 0.8; + line-dasharray: 6,6; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/get-shapefiles.sh openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/get-shapefiles.sh --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/get-shapefiles.sh 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/get-shapefiles.sh 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,88 @@ +#!/bin/sh +set -e -u + +UNZIP_OPTS=-qqun + +# create and populate data dir + +mkdir -p data/ +mkdir -p data/world_boundaries +mkdir -p data/simplified-land-polygons-complete-3857 +mkdir -p data/ne_110m_admin_0_boundary_lines_land +mkdir -p data/ne_10m_populated_places +mkdir -p data/land-polygons-split-3857 + +# world_boundaries +echo "dowloading world_boundaries..." +curl -z "data/world_boundaries-spherical.tgz" -L -o "data/world_boundaries-spherical.tgz" "http://planet.openstreetmap.org/historical-shapefiles/world_boundaries-spherical.tgz" +echo "expanding world_boundaries..." +tar -xzf data/world_boundaries-spherical.tgz -C data/ + +# simplified-land-polygons-complete-3857 +echo "downloading simplified-land-polygons-complete-3857..." +curl -z "data/simplified-land-polygons-complete-3857.zip" -L -o "data/simplified-land-polygons-complete-3857.zip" "http://data.openstreetmapdata.com/simplified-land-polygons-complete-3857.zip" +echo "simplified-land-polygons-complete-3857..." +unzip $UNZIP_OPTS data/simplified-land-polygons-complete-3857.zip \ + simplified-land-polygons-complete-3857/simplified_land_polygons.shp \ + simplified-land-polygons-complete-3857/simplified_land_polygons.shx \ + simplified-land-polygons-complete-3857/simplified_land_polygons.prj \ + simplified-land-polygons-complete-3857/simplified_land_polygons.dbf \ + simplified-land-polygons-complete-3857/simplified_land_polygons.cpg \ + -d data/ + +# ne_110m_admin_0_boundary_lines_land +echo "dowloading ne_110m_admin_0_boundary_lines_land..." +curl -z data/ne_110m_admin_0_boundary_lines_land.zip -L -o data/ne_110m_admin_0_boundary_lines_land.zip http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_boundary_lines_land.zip +echo "expanding ne_110m_admin_0_boundary_lines_land..." +unzip $UNZIP_OPTS data/ne_110m_admin_0_boundary_lines_land.zip \ + ne_110m_admin_0_boundary_lines_land.shp \ + ne_110m_admin_0_boundary_lines_land.shx \ + ne_110m_admin_0_boundary_lines_land.prj \ + ne_110m_admin_0_boundary_lines_land.dbf \ + -d data/ne_110m_admin_0_boundary_lines_land/ + +# ne_10m_populated_places +echo "dowloading ne_10m_populated_places..." +curl -z data/ne_10m_populated_places.zip -L -o data/ne_10m_populated_places.zip http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_populated_places.zip +echo "expanding ne_10m_populated_places..." +unzip $UNZIP_OPTS data/ne_10m_populated_places.zip \ + ne_10m_populated_places.shp \ + ne_10m_populated_places.shx \ + ne_10m_populated_places.prj \ + ne_10m_populated_places.dbf \ + ne_10m_populated_places.cpg \ + -d data/ne_10m_populated_places/ + +# land-polygons-split-3857 +echo "dowloading land-polygons-split-3857..." +curl -z "data/land-polygons-split-3857.zip" -L -o "data/land-polygons-split-3857.zip" "http://data.openstreetmapdata.com/land-polygons-split-3857.zip" +echo "expanding land-polygons-split-3857..." +unzip $UNZIP_OPTS data/land-polygons-split-3857.zip \ + land-polygons-split-3857/land_polygons.shp \ + land-polygons-split-3857/land_polygons.shx \ + land-polygons-split-3857/land_polygons.prj \ + land-polygons-split-3857/land_polygons.dbf \ + land-polygons-split-3857/land_polygons.cpg \ + -d data/ + + +#process populated places +echo "processing ne_10m_populated_places..." +rm -f data/ne_10m_populated_places/ne_10m_populated_places_fixed.* +ogr2ogr --config SHAPE_ENCODING UTF8 data/ne_10m_populated_places/ne_10m_populated_places_fixed.shp data/ne_10m_populated_places/ne_10m_populated_places.shp + +#index +echo "indexing shapefiles" + +shapeindex --shape_files \ +data/simplified-land-polygons-complete-3857/simplified_land_polygons.shp \ +data/land-polygons-split-3857/land_polygons.shp \ +data/ne_10m_populated_places/ne_10m_populated_places_fixed.shp \ +data/ne_110m_admin_0_boundary_lines_land/ne_110m_admin_0_boundary_lines_land.shp + + +#clean up +echo "cleaning up..." +rm data/ne_10m_populated_places/ne_10m_populated_places.* + +echo "...done!" diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/INSTALL.md openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/INSTALL.md --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/INSTALL.md 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/INSTALL.md 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,93 @@ +# Installation + +You need OpenStreetMap data loaded into a PostGIS database (see below for [dependencies](https://github.com/gravitystorm/openstreetmap-carto#dependencies)). These stylesheets currently work only with the osm2pgsql defaults (i.e. database name is ``gis``, table names are ``planet_osm_point``, etc). + +It's probably easiest to grab an PBF of OSM data from [Mapzen](https://mapzen.com/metro-extracts/) or [geofabrik](http://download.geofabrik.de/). Once you've set up your PostGIS database, import with osm2pgsql: + +``` +osm2pgsql -d gis ~/path/to/data.osm.pbf --style openstreetmap-carto.style +``` + +You can find a more detailed guide to setting up a database and loading data with osm2pgsql at [switch2osm.org](http://switch2osm.org/loading-osm-data/). + +Additionally you need some shapefiles. + +## Scripted download + +To download the shapefiles you can run the following script from this directory. No further steps should be needed as the data has been processed and placed in the requisite directories. + +``` +./get-shapefiles.sh +``` + +## Manual download + +You can also download them manually at the following paths: + +* [``simplified-land-polygons.shp``](http://data.openstreetmapdata.com/simplified-land-polygons-complete-3857.zip) (updated daily) +* [``land-polygon.shp``](http://data.openstreetmapdata.com/land-polygons-split-3857.zip) (updated daily) +* [``builtup_area.shp``](http://planet.openstreetmap.org/historical-shapefiles/world_boundaries-spherical.tgz) +* [``ne_110m_admin_0_boundary_lines_land.shp``](http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_boundary_lines_land.zip) +* [``ne_10m_populated_places_fixed.shp``](http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_populated_places.zip) (and see [below](#populated-places-shapefile)) + +The repeated www.naturalearthdata.com in the Natural Earth shapefiles is correct. + +Put these shapefiles at ``path/to/openstreetmap-carto/data``. + +### Populated places shapefile + +The Natural Earth 2.0 populated places shapefile contains data that triggers a bug in mapnik. As +a workaround we run the shapefile through ogr2ogr to clean up the data. + +``` +ogr2ogr ne_10m_populated_places_fixed.shp ne_10m_populated_places.shp +``` + +See https://github.com/mapnik/mapnik/issues/1605 for more details. + +## Fonts +The stylesheet depends on a number of openly licensed fonts for support of all the languages found on the map. The package which supplies these fonts on Ubuntu is indicated. + +If a font is missing, it will skip to the next available font which contains those characters. If you are not concerned with a particular language, you do not need its fonts. DejaVu Sans and Unifont are the two required fonts, and included on most systems. + +### Global +* DejaVu Sans, for most languages (``ttf-dejavu``) +* Droid Sans Fallback, as a reasonable fallback (``fonts-droid``) +* Unifont, as a last resort fallback (``ttf-unifont``) + +### Southeast Asia +* Arundina Sans, for Thai (``fonts-sipa-arundina``) +* Padauk, for Burmese (``fonts-sil-padauk``) +* Khmer OS Metal Chrieng Regular, for Khmer (``fonts-khmeros``) + +### South Asia + +* Mukti Narrow, for Bangali (``ttf-indic-fonts-core``) +* Gargi Medium, for Devanagari (``ttf-indic-fonts-core``) +* TSCu_Paranar, for Tamil (``ttf-tamil-fonts``) +* Mallige, for Kannada (``ttf-indic-fonts-core`` for normal and bold and ``ttf-kannada-fonts`` for oblique) *The filename uses "Malige" but the font name uses "Mallige"* + +On Ubuntu you can install all the fonts with + +``` +sudo apt-get install ttf-dejavu fonts-droid ttf-unifont fonts-sipa-arundina fonts-sil-padauk fonts-khmeros \ +ttf-indic-fonts-core ttf-tamil-fonts ttf-kannada-fonts +``` + +## Dependencies + +* [TileMill](http://mapbox.com/tilemill) - This is a TileMill project you can copy (or symlink) directly into your Mapbox/project directory + +If you aren't using TileMill, you can compile the CartoCSS stylesheets into Mapnik XML using the command-line `carto` command. + +* [carto](https://github.com/mapbox/carto) >= 0.9.3 (we're using instances with cascading rules) +* [mapnik](https://github.com/mapnik/mapnik/wiki/Mapnik-Installation) >= 2.1.0 + +--- + +* [osm2pgsql](http://wiki.openstreetmap.org/wiki/Osm2pgsql) to import your data into a PostGIS database +* [PostgreSQL](http://www.postgresql.org/) +* [PostGIS](http://postgis.org/) +* [ogr2ogr](http://www.gdal.org/) command line GDAL utility for processing vector data. here we use it to work around a encoding bug in the Nautral Earth data. +* curl, unzip for downloading and decompressing files +* shapeindex (a companion utility to Mapnik found in the mapnik-utils package) for indexing downloaded shapefiles diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/landcover.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/landcover.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/landcover.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/landcover.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,476 @@ +// --- Parks, woods, other green things --- + +@forest: #a0cf85; +@grass: #cfeca8; // also meadow, common, garden, village_green, conservation +@golf_course: #b5e3b5; +@natural: #c6e4b4; // also grassland +@park: #cdf7c9; // also recreation_ground +@wood: #aed1a0; +@vineyard: #abdf96; + +// --- sports --- + +@stadium: #3c9; // also sports_centre +@track: #74dcba; +@pitch: #8ad3af; + +// --- "base" landuses --- + +@residential: #E1E1E1; // Lch(89,0,0) +@residential-line: #B9B9B9; // Lch(75,0,0) +@retail: #FFD6D1; // Lch(89,16,30) +@retail-line: #D99C95; // Lch(70,25,30) +@commercial: #F2DAD9; // Lch(89,8.5,25) +@commercial-line: #D1B2B0; // Lch(75,12,25) +@industrial: #EBDBE8; // Lch(89,9,330) +@industrial-line: #C6B3C3; // Lch(75,11,330) +@railway: @industrial; +@railway-line: @industrial-line; +@farmland: #EDDDC9; // Lch(89,12,80) (Also used for farm) +@farmland-line: #C8B69E; // Lch(75,15,80) + +@farmyard: #EFD6B5; // Lch(87,20,80) +@farmyard-line: #D1B48C; // Lch(75,25,80) + +// --- Other ---- + +@aerodrome: #e9e7e2; +@allotments: #e5c7ab; +@apron: #e9d1ff; +@attraction: #f2caea; +@barracks: #ff8f8f; +@campsite: #def6c0; // also caravan_site, picnic_site +@cemetery: #aacbaf; // also grave_yard +@construction: #b6b592; +@danger_area: pink; +@desert: #e3b57a; +@field: @farmland; +@garages: #dfddce; +@heath: #d6d99f; +@parking: #f7efb7; +@playground: #ccfff1; +@power: #bbb; +@rest_area: #efc8c8; // also services +@sand: #ffdf88; +@school: #f0f0d8; // also university, college, hospital, kindergarten + +#landcover { + [feature = 'leisure_swimming_pool'][zoom >= 14] { + polygon-fill: @water-color; + line-color: saturate(darken(@water-color, 40%), 30%); + line-width: 0.5; + } + + [feature = 'leisure_playground'][zoom >= 13] { + polygon-fill: @playground; + line-color: saturate(darken(@playground, 60%), 30%); + line-width: 0.3; + } + + [feature = 'tourism_camp_site'], + [feature = 'tourism_caravan_site'], + [feature = 'tourism_picnic_site'] { + [zoom >= 10] { + polygon-fill: @campsite; + line-color: saturate(darken(@campsite, 60%), 30%); + line-width: 0.3; + } + } + + [feature = 'tourism_attraction'][zoom >= 10] { + polygon-fill: @attraction; + } + + [feature = 'landuse_quarry'][zoom >= 10] { + polygon-pattern-file: url('symbols/quarry2.png'); + line-width: 0.5; + line-color: grey; + } + + [feature = 'landuse_vineyard'] { + [zoom >= 10][zoom < 13] { + polygon-fill: @vineyard; + } + [zoom >= 13] { + polygon-pattern-file: url('symbols/vineyard.png'); + } + } + + [feature = 'landuse_orchard'][zoom >= 10] { + polygon-pattern-file: url('symbols/orchard.png'); + } + + [feature = 'landuse_cemetery'], + [feature = 'amenity_grave_yard'] { + [zoom >= 10][zoom < 14] { + polygon-fill: @cemetery; + } + [zoom >= 14] { + [religion = 'jewish'] { polygon-pattern-file: url('symbols/cemetery_jewish.18.png'); } + [religion = 'christian'] { polygon-pattern-file: url('symbols/grave_yard.png'); } + [religion = 'INT-generic'] { polygon-pattern-file: url('symbols/grave_yard_generic.png'); } + } + } + + [feature = 'landuse_residential'][zoom >= 10] { + polygon-fill: @residential; + [zoom >= 16] { + line-width: .5; + line-color: @residential-line; + [name != ''] { + line-width: 0.7; + } + + } + } + + [feature = 'landuse_garages'][zoom >= 13] { + polygon-fill: @garages; + } + + [feature = 'military_barracks'][zoom >= 10] { + polygon-fill: @barracks; + } + + [feature = 'landuse_field'] { + [zoom >= 10] { + polygon-fill: @field; + [zoom >= 14] { + line-width: 0.3; + line-opacity: 0.4; + line-color: saturate(darken(@field, 40%), 20%); + } + } + } + + [feature = 'military_danger_area'] { + [zoom >= 9][zoom < 11] { + polygon-fill: @danger_area; + polygon-opacity: 0.3; + } + [zoom >= 11] { + polygon-pattern-file: url('symbols/danger.png'); + } + } + + [feature = 'landuse_meadow'], + [feature = 'landuse_grass'] { + [zoom >= 10] { + polygon-fill: @grass; + } + } + + [feature = 'leisure_park'], + [feature = 'leisure_recreation_ground'] { + [zoom >= 10] { + polygon-fill: @park; + } + } + + [feature = 'tourism_zoo'][zoom >= 10] { + polygon-pattern-file: url('symbols/zoo.png'); + } + + [feature = 'leisure_common'][zoom >= 10] { + polygon-fill: @grass; + } + + [feature = 'leisure_garden'][zoom >= 10] { + polygon-fill: @grass; + } + + [feature = 'leisure_golf_course'][zoom >= 10] { + polygon-fill: @golf_course; + } + + [feature = 'landuse_allotments'] { + [zoom >= 10][zoom < 14] { + polygon-fill: @allotments; + } + [zoom >= 14] { + polygon-pattern-file: url('symbols/allotments.png'); + polygon-pattern-alignment: global; + } + } + + [feature = 'landuse_forest'] { + [zoom >= 8] { + polygon-fill: @forest; + } + [zoom >= 14] { + polygon-pattern-file: url('symbols/forest.png'); + } + } + + [feature = 'landuse_farmyard'][zoom >= 10] { + polygon-fill: @farmyard; + [zoom >= 16] { + line-width: 0.5; + line-color: @farmyard-line; + [name != ''] { + line-width: 0.7; + } + } + } + + [feature = 'landuse_farm'], + [feature = 'landuse_farmland'] { + [zoom >= 10] { + polygon-fill: @farmland; + [zoom >= 16] { + line-width: .5; + line-color: @farmland-line; + } + } + } + + [feature = 'landuse_recreation_ground'], + [feature = 'landuse_conservation'] { + [zoom >= 10] { + polygon-fill: @grass; + } + } + + [feature = 'landuse_village_green'][zoom >= 10] { + polygon-fill: @grass; + } + + [feature = 'landuse_retail'][zoom >= 10] { + polygon-fill: @retail; + [zoom >= 16] { + line-width: 0.5; + line-color: @retail-line; + [name != ''] { + line-width: 0.7; + } + } + } + + [feature = 'landuse_industrial'][zoom >= 10] { + polygon-fill: @industrial; + [zoom >= 16] { + line-width: .5; + line-color: @industrial-line; + [name != ''] { + line-width: 0.7; + } + } + } + + [feature = 'landuse_railway'][zoom >= 10] { + polygon-fill: @railway; + [zoom >= 16][name != ''] { + line-width: 0.7; + line-color: @railway-line; + } + } + + [feature = 'power_station'][zoom >= 10], + [feature = 'power_generator'][zoom >= 10], + [feature = 'power_sub_station'][zoom >= 13], + [feature = 'power_substation'][zoom >= 13] { + polygon-fill: @power; + [zoom >= 12] { + line-width: 0.4; + line-color: darken(@power, 40%); + } + } + + [feature = 'landuse_commercial'][zoom >= 10] { + polygon-fill: @commercial; + [zoom >= 16] { + line-width: 0.5; + line-color: @commercial-line; + [name != ''] { + line-width: 0.7; + } + + } + } + + [feature = 'landuse_brownfield'], + [feature = 'landuse_landfill'], + [feature = 'landuse_construction'] { + [zoom >= 10] { + polygon-fill: @construction; + } + } + + [feature = 'natural_wood'] { + [zoom >= 8] { + polygon-fill: @wood; + } + } + + [feature = 'natural_desert'][zoom >= 10] { + polygon-fill: @desert; + } + + [feature = 'natural_sand'][zoom >= 10] { + polygon-fill: @sand; + } + + [feature = 'natural_heath'][zoom >= 10] { + polygon-fill: @heath; + } + + [feature = 'natural_grassland'][zoom >= 10] { + polygon-fill: #c6e4b4; + } + + [feature = 'natural_scrub'] { + [zoom >= 10][zoom < 14] { + polygon-fill: #b5e3b5; + } + [zoom >= 14] { + polygon-pattern-file: url('symbols/scrub.png'); + } + } + + [feature = 'amenity_university'], + [feature = 'amenity_college'], + [feature = 'amenity_school'], + [feature = 'amenity_hospital'], + [feature = 'amenity_kindergarten'] { + [zoom >= 10] { + polygon-fill: @school; + [zoom >= 12] { + line-width: 0.3; + line-color: brown; + } + } + } + + [feature = 'amenity_parking'][zoom >= 10] { + polygon-fill: @parking; + [zoom >= 15] { + line-width: 0.3; + line-color: saturate(darken(@parking, 40%), 20%); + } + } + + [feature = 'aeroway_apron'][zoom >= 10] { + polygon-fill: @apron; + } + + [feature = 'aeroway_aerodrome'][zoom >= 10] { + polygon-fill: @aerodrome; + line-width: 0.2; + line-color: saturate(darken(@aerodrome, 40%), 20%); + } + + [feature = 'natural_beach'][zoom >= 10] { + polygon-pattern-file: url('symbols/beach.png'); + } + + [feature = 'highway_services'], + [feature = 'highway_rest_area'] { + [zoom >= 10] { + polygon-fill: @rest_area; + } + } + + [feature = 'leisure_sports_centre'], + [feature = 'leisure_stadium'] { + [zoom >= 10] { + polygon-fill: @stadium; + } + } + + [feature = 'leisure_track'][zoom >= 10] { + polygon-fill: @track; + [zoom >= 15] { + line-width: 0.5; + line-color: saturate(darken(@track, 40%), 20%); + } + } + + [feature = 'leisure_pitch'][zoom >= 10] { + polygon-fill: @pitch; + [zoom >= 15] { + line-width: 0.5; + line-color: saturate(darken(@pitch, 40%), 20%); + } + } +} + +/* man_made=cutline */ +#landcover-line { + [zoom >= 14] { + line-width: 3; + line-join: round; + line-cap: square; + line-color: @land-color; + [zoom >= 16] { + line-width: 6; + } + } +} + +#landuse-overlay { + [landuse = 'military'][zoom >= 10]::landuse { + polygon-pattern-file: url('symbols/military_red_hatch.png'); + polygon-pattern-alignment: global; + line-color: #f55; + line-width: 3; + line-opacity: 0.329; + } +} + +#cliffs { + [natural = 'cliff'][zoom >= 13] { + line-pattern-file: url('symbols/cliff.png'); + [zoom >= 15] { + line-pattern-file: url('symbols/cliff2.png'); + } + } + [man_made = 'embankment'][zoom >= 15]::man_made { + line-pattern-file: url('symbols/cliff.png'); + } +} + +#area-barriers { + [zoom >= 16] { + line-color: #444; + line-width: 0.4; + [barrier = 'hedge'] { + polygon-fill: #aed1a0; + } + } +} + +.barriers { + [zoom >= 16] { + line-width: 0.4; + line-color: #444; + } + [barrier = 'embankment'][zoom >= 14] { + line-width: 0.4; + line-color: #444; + } + [barrier = 'hedge'][zoom >= 16] { + line-width: 3; + line-color: #aed1a0; + } +} + +#tree-row { + [natural = 'tree_row'][zoom >= 16] { + line-pattern-file: url('symbols/tree_row.png'); + [zoom >= 17] { + line-pattern-file: url('symbols/tree_row2.png'); + } + } +} + +#theme-park { + [tourism = 'theme_park'][zoom >= 13] { + line-color: #734a08; + line-width: 1.5; + line-dasharray: 9,3; + line-opacity: 0.6; + [zoom >= 15] { + line-width: 2.5; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/LICENSE.txt openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/LICENSE.txt --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/LICENSE.txt 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/LICENSE.txt 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,15 @@ +OpenStreetMap Carto: A global map style for OpenStreetMap maps. + +Created by Andy Allan and contributors. +Based on original cartography by Steve Chilton and others. + +This software and associated documentation files (the "Software") is +released under the CC0 Public Domain Dedication, version 1.0, as +published by Creative Commons. To the extent possible under law, the +author(s) have dedicated all copyright and related and neighboring +rights to the Software to the public domain worldwide. The Software is +distributed WITHOUT ANY WARRANTY. + +If you did not receive a copy of the CC0 Public Domain Dedication +along with the Software, see + \ No newline at end of file diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/openstreetmap-carto.style openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/openstreetmap-carto.style --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/openstreetmap-carto.style 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/openstreetmap-carto.style 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,226 @@ +# This is the default osm2pgsql .style file that comes with osm2pgsql. +# +# A .style file has 4 columns that define how OSM objects end up in tables in +# the database and what columns are created. It interacts with the command-line +# hstore options. +# +# Columns +# ======= +# +# OsmType: This is either "node", "way" or "node,way" and indicates if this tag +# applies to nodes, ways, or both. +# +# Tag: The tag +# +# DataType: The type of the column to be created. Normally "text" +# +# Flags: Flags that indicate what table the OSM object is moved into. +# +# There are 5 possible flags. These flags are used both to indicate if a column +# should be created, and if ways with the tag are assumed to be areas. The area +# assumptions can be overridden with an area=yes/no tag +# +# polygon - Create a column for this tag, and objects the tag with are areas +# +# linear - Create a column for this tag +# +# phstore - Don't create a column for this tag, but objects with the tag are areas +# +# delete - Drop this tag completely and don't create a column for it. This also +# prevents the tag from being added to hstore columns +# +# nocache - Deprecated and does nothing +# +# If an object has a tag that indicates it is an area or has area=yes/1, +# osm2pgsql will try to turn it into an area. If it succeeds, it places it in +# the polygon table. If it fails (e.g. not a closed way) it places it in the +# line table. +# +# Nodes are never placed into the polygon or line table and are always placed in +# the point table. +# +# Hstore +# ====== +# +# The options --hstore, --hstore-match-only, and --hstore-all interact with +# the .style file. +# +# With --hstore any tags without a column will be added to the hstore column. +# This will also cause all objects to be kept. +# +# With --hstore-match-only the behavior for tags is the same, but objects are +# only kept if they have a non-NULL value in one of the columns. +# +# With --hstore-all all tags are added to the hstore column unless they appear +# in the style file with a delete flag, causing duplication between the normal +# columns and the hstore column. +# +# Special database columns +# ======================== +# +# There are some special database columns that if present in the .style file +# will be populated by osm2pgsql. +# +# These are +# +# z_order - datatype int4 +# +# way_area - datatype real. The area of the way, in the units of the projection +# (e.g. square mercator meters). Only applies to areas +# +# osm_user, osm_uid, osm_version, osm_timestamp - datatype text. Used with the +# --extra-attributes option to include metadata in the database. If importing +# with both --hstore and --extra-attributes the meta-data will end up in the +# tags hstore column regardless of the style file. + +# OsmType Tag DataType Flags +node,way access text linear +node,way addr:housename text linear +node,way addr:housenumber text linear +node,way addr:interpolation text linear +node,way admin_level text linear +node,way aerialway text linear +node,way aeroway text polygon +node,way amenity text polygon +node,way area text # hard coded support for area=1/yes => polygon is in osm2pgsql +node,way barrier text linear +node,way bicycle text +node,way brand text linear +node,way bridge text linear +node,way boundary text linear +node,way building text polygon +node capital text linear +node,way construction text linear +node,way covered text linear +node,way culvert text linear +node,way cutting text linear +node,way denomination text linear +node,way disused text linear +node ele text linear +node,way embankment text linear +node,way foot text linear +node,way generator:source text linear +node,way harbour text polygon +node,way highway text linear +node,way historic text polygon +node,way horse text linear +node,way intermittent text linear +node,way junction text linear +node,way landuse text polygon +node,way layer text linear +node,way leisure text polygon +node,way lock text linear +node,way man_made text polygon +node,way military text polygon +node,way motorcar text linear +node,way name text linear +node,way natural text polygon # natural=coastline tags are discarded by a hard coded rule in osm2pgsql +node,way office text polygon +node,way oneway text linear +node,way operator text linear +node,way place text polygon +node poi text +node,way population text linear +node,way power text polygon +node,way power_source text linear +node,way public_transport text polygon +node,way railway text linear +node,way ref text linear +node,way religion text nocache +node,way route text linear +node,way service text linear +node,way shop text polygon +node,way sport text polygon +node,way surface text linear +node,way toll text linear +node,way tourism text polygon +node,way tower:type text linear +way tracktype text linear +node,way tunnel text linear +node,way water text polygon +node,way waterway text polygon +node,way wetland text polygon +node,way width text linear +node,way wood text linear +node,way z_order int4 linear # This is calculated during import +way way_area real # This is calculated during import + +# Area tags +# We don't make columns for these tags, but objects with them are areas. +# Mainly for use with hstore +way abandoned:aeroway text phstore +way abandoned:amenity text phstore +way abandoned:building text phstore +way abandoned:landuse text phstore +way abandoned:power text phstore +way area:highway text phstore + +# Deleted tags +# These are tags that are generally regarded as useless for most rendering. +# Most of them are from imports or intended as internal information for mappers +# Some of them are automatically deleted by editors. +# If you want some of them, perhaps for a debugging layer, just delete the lines. + +# These tags are used by mappers to keep track of data. +# They aren't very useful for rendering. +node,way note text delete +node,way note:* text delete +node,way source text delete +node,way source_ref text delete +node,way source:* text delete +node,way attribution text delete +node,way comment text delete +node,way fixme text delete + +# Tags generally dropped by editors, not otherwise covered +node,way created_by text delete +node,way odbl text delete +node,way odbl:note text delete +node,way SK53_bulk:load text delete + +# Lots of import tags +# TIGER (US) +node,way tiger:* text delete + +# NHD (US) +# NHD has been converted every way imaginable +node,way NHD:* text delete +node,way nhd:* text delete + +# GNIS (US) +node,way gnis:* text delete + +# Geobase (CA) +node,way geobase:* text delete +# NHN (CA) +node,way accuracy:meters text delete +node,way sub_sea:type text delete +node,way waterway:type text delete + +# KSJ2 (JA) +# See also note:ja and source_ref above +node,way KSJ2:* text delete +# Yahoo/ALPS (JA) +node,way yh:* text delete + +# osak (DK) +node,way osak:* text delete + +# kms (DK) +node,way kms:* text delete + +# ngbe (ES) +# See also note:es and source:file above +node,way ngbe:* text delete + +# naptan (UK) +node,way naptan:* text delete + +# Corine (CLC) (Europe) +node,way CLC:* text delete + +# misc +node,way 3dshapes:ggmodelk text delete +node,way AND_nosr_r text delete +node,way import text delete +node,way it:fvg:* text delete diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/placenames.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/placenames.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/placenames.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/placenames.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,142 @@ +@placenames: #222; +@placenames-light: #777777; +.country { + [place = 'country'][zoom >= 2][zoom < 6] { + text-name: "[name]"; + text-size: 9; + text-fill: #9d6c9d; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-wrap-width: 20; + [zoom >= 4] { + text-size: 10; + } + } +} + +.state { + [place = 'state'][zoom >= 4][zoom < 9] { + text-name: "[ref]"; + text-size: 9; + text-fill: #9d6c9d; + text-face-name: @oblique-fonts; + text-halo-radius: 1.5; + text-wrap-width: 0; + [zoom >= 5] { + text-name: "[name]"; + } + [zoom >= 7] { + text-size: 11; + } + } +} + +#placenames-capital { + [zoom >= 5][zoom < 15] { + text-name: "[name]"; + text-size: 10; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-min-distance: 10; + [zoom >= 6] { + text-size: 12; + } + [zoom >= 11] { + text-size: 15; + } + } +} + +#placenames-medium::city { + [place = 'city'] { + [zoom >= 6][zoom < 15] { + text-name: "[name]"; + text-size: 9; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-min-distance: 10; + [zoom >= 9] { + text-size: 12; + } + [zoom >= 11] { + text-size: 15; + } + } + } +} + +#placenames-medium::town { + [place = 'town'] { + [zoom >= 9] { + text-name: "[name]"; + text-size: 9; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-wrap-width: 20; + text-min-distance: 10; + } + [zoom >= 11] { + text-size: 11; + } + [zoom >= 14] { + text-size: 15; + text-fill: @placenames-light; + } + } +} + +#placenames-small::suburb { + [place = 'suburb'][zoom >= 12] { + text-name: "[name]"; + text-size: 11; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-min-distance: 10; + [zoom >= 14] { + text-size: 14; + text-fill: @placenames-light; + } + } +} + +#placenames-small::village { + [place = 'village'] { + [zoom >=12] { + text-name: "[name]"; + text-size: 10; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-min-distance: 10; + [zoom >= 15] { + text-size: 13; + text-fill: @placenames-light; + } + } + } +} + +#placenames-small::hamlet { + [place = 'hamlet'], + [place = 'locality'], + [place = 'neighbourhood'], + [place = 'isolated_dwelling'], + [place = 'farm'] { + [zoom >= 14] { + text-name: "[name]"; + text-size: 9; + text-fill: @placenames; + text-face-name: @book-fonts; + text-halo-radius: 1.5; + text-min-distance: 10; + } + [zoom >= 16] { + text-size: 12; + text-fill: @placenames-light; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/power.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/power.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/power.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/power.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,34 @@ +#power-line { + [zoom >= 14] { + line-width: 1; + line-color: #777; + } + [zoom >= 16] { + line-width: 1.5; + } +} + +#power-minorline { + [zoom >= 16] { + line-width: 0.5; + line-color: #777; + } +} + +#power-towers { + [zoom >= 14] { + point-file: url('symbols/power_tower_3x3.png'); + } + [zoom >= 15] { + point-file: url('symbols/power_tower_5x5.png'); + } + [zoom >= 17] { + point-file: url('symbols/power_tower.png'); + } +} + +#power-poles { + [zoom >= 16] { + point-file: url('symbols/power_pole.png'); + } +} Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/preview.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/preview.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/project.mml openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/project.mml --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/project.mml 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/project.mml 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,1734 @@ +{ + "bounds": [ + -180, + -85.05112877980659, + 180, + 85.05112877980659 + ], + "center": [ + 0, + 0, + 4 + ], + "format": "png", + "interactivity": false, + "minzoom": 0, + "maxzoom": 22, + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "Stylesheet": [ + "style.mss", + "shapefiles.mss", + "landcover.mss", + "water.mss", + "water-features.mss", + "roads.mss", + "power.mss", + "citywalls.mss", + "placenames.mss", + "buildings.mss", + "amenity-symbols.mss", + "stations.mss", + "amenity-points.mss", + "ferry-routes.mss", + "aerialways.mss", + "admin.mss", + "addressing.mss" + ], + "Layer": [ + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "id": "world", + "class": "", + "Datasource": { + "file": "data/simplified-land-polygons-complete-3857/simplified_land_polygons.shp", + "type": "shape" + }, + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "world" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "id": "coast-poly", + "class": "", + "Datasource": { + "file": "data/land-polygons-split-3857/land_polygons.shp", + "type": "shape" + }, + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "coast-poly" + }, + { + "geometry": "polygon", + "extent": [ + -179.12960815429688, + -52.982724914179855, + 178.4432525634766, + 70.87402746981634 + ], + "id": "builtup", + "class": "", + "Datasource": { + "file": "data/world_boundaries/builtup_area.shp", + "type": "shape" + }, + "srs-name": "mercator", + "srs": "+proj=merc +datum=WGS84 +over", + "advanced": {}, + "name": "builtup" + }, + { + "geometry": "linestring", + "extent": [ + -140.99778, + -54.89681, + 141.03385176001382, + 70.16419 + ], + "id": "necountries", + "class": "", + "Datasource": { + "file": "data/ne_110m_admin_0_boundary_lines_land/ne_110m_admin_0_boundary_lines_land.shp", + "type": "shape" + }, + "srs-name": "WGS84", + "srs": "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs", + "advanced": {}, + "name": "necountries" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way, name, religion,\ncoalesce (aeroway, amenity, landuse, leisure, military, \"natural\", power, tourism, highway) as feature from (\nselect way, COALESCE(name,'') AS name, \n('aeroway_' || (case when aeroway in ('apron', 'aerodrome') then aeroway else null end)) as aeroway,\n('amenity_' || (case when amenity in ('parking', 'university', 'college', 'school', 'hospital', 'kindergarten', 'grave_yard') then amenity else null end)) as amenity,\n('landuse_' || (case when landuse in ('quarry', 'vineyard', 'orchard', 'cemetery', 'residential', 'garages', 'field', 'meadow', 'grass', 'allotments', 'forest', 'farmyard', 'farm', 'farmland', 'recreation_ground', 'conservation', 'village_green', 'retail', 'industrial', 'railway', 'commercial', 'brownfield', 'landfill', 'construction') then landuse else null end)) as landuse,\n('leisure_' || (case when leisure in ('swimming_pool', 'playground', 'park', 'recreation_ground', 'common', 'garden', 'golf_course', 'picnic_table','sports_centre','stadium','pitch','track') then leisure else null end)) as leisure,\n('military_' || (case when military in ('barracks', 'danger_area') then military else null end)) as military,\n('natural_' || (case when \"natural\" in ('beach','desert','heath','mud','grassland','wood','sand','scrub') then \"natural\" else null end)) as \"natural\",\n('power_' || (case when power in ('station','sub_station','substation','generator') then power else null end)) as power,\n('tourism_' || (case when tourism in ('attraction', 'camp_site', 'caravan_site', 'picnic_site', 'zoo') then tourism else null end)) as tourism,\n('highway_' || (case when highway in ('services', 'rest_area') then highway else null end)) as highway,\ncase when religion in ('christian','jewish') then religion else 'INT-generic'::text end as religion\n from planet_osm_polygon\n where landuse is not null\n or leisure is not null\n or aeroway in ('apron','aerodrome')\n or amenity in ('parking','university','college','school','hospital','kindergarten','grave_yard')\n or military in ('barracks','danger_area')\n or \"natural\" in ('beach','desert','heath','mud','grassland','wood','sand','scrub')\n or power in ('station','sub_station','substation','generator')\n or tourism in ('attraction','camp_site','caravan_site','picnic_site','zoo')\n or highway in ('services','rest_area')\n order by z_order,way_area desc\n ) as landcover\n) as features", + "extent": "-20037508,-19929239,20037508,19929239", + "key_field": "", + "geometry_field": "", + "dbname": "gis" + }, + "id": "landcover", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "landcover" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way\nfrom planet_osm_line\nwhere man_made='cutline'\n) as landcover_line", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "landcover-line", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "landcover-line" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,waterway,case when tunnel in ('yes','culvert') then 'yes' else 'no' end as int_tunnel \n from planet_osm_line\n where waterway in ('stream','drain','ditch')\n and (tunnel is null or tunnel != 'yes')\n ) as water_lines_casing", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-lines-casing", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-lines-casing" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,waterway\n from planet_osm_line\n where waterway='river'\n ) as water_lines_low_zoom", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-lines-low-zoom", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-lines-low-zoom" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(SELECT\n way, \"natural\", waterway, landuse, name, way_area/(!pixel_width!*!pixel_height!) AS way_pixels\n FROM planet_osm_polygon\n WHERE\n (waterway IN ('dock', 'riverbank', 'canal')\n OR landuse IN ('reservoir','basin')\n OR \"natural\" IN ('lake','water','land','glacier','mud'))\n AND building IS NULL\n AND way_area/(!pixel_width!*!pixel_height!) > 0.01\n ORDER BY z_order, way_area) AS water_areas", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-areas", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-areas" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,\"natural\"\n from planet_osm_polygon\n where \"natural\" in ('marsh','wetland') and building is null\n order by z_order,way_area desc\n ) as water_areas_overlay", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-areas-overlay", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-areas-overlay" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,waterway,lock,name,case when tunnel in ('yes','culvert') then 'yes' else 'no' end as int_tunnel, 'no' as bridge\n from planet_osm_line\n where waterway in ('weir','river','canal','derelict_canal','stream','drain','ditch','wadi')\n and (bridge is null or bridge not in ('yes','aqueduct'))\n order by z_order\n ) as water_lines", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-lines", + "class": "water-lines", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-lines" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,name from planet_osm_line where waterway='dam') as dam", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "dam", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "dam" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_polygon where leisure ='marina') as marinas_area", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "marinas-area", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "marinas-area" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,man_made from planet_osm_polygon where man_made in ('pier','breakwater','groyne')) as piers_area", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "piers-area", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "piers-area" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,man_made from planet_osm_line where man_made in ('pier','breakwater','groyne')) as piers", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "piers", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "piers" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,waterway from planet_osm_point where waterway='lock_gate') as locks", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "locks", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "locks" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,building,railway,amenity from planet_osm_polygon\n where railway='station'\n or building in ('station','supermarket')\n or amenity='place_of_worship'\n order by z_order,way_area desc) as buildings_lz", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "buildings-lz", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "buildings-lz" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,aeroway,\n case\n when building in ('garage','roof','garages','service','shed','shelter','cabin','storage_tank','tank','support','glasshouse','greenhouse','mobile_home','kiosk','silo','canopy','tent') then 'INT-light'::text\n else building\n end as building\n from planet_osm_polygon\n where (building is not null\n and building not in ('no','station','supermarket','planned')\n and (railway is null or railway != 'station')\n and (amenity is null or amenity != 'place_of_worship'))\n or aeroway = 'terminal'\n order by z_order,way_area desc) as buildings", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "buildings", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "buildings" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select * from ((select way, prio, ('highway_' || (case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, case when oneway in ('yes', '-1') and highway in ('motorway','motorway_link','trunk','trunk_link','primary','primary_link','secondary','secondary_link','tertiary','tertiary_link','residential','unclassified','road','service','pedestrian','raceway','living_street','construction') then oneway else null end as oneway, case when substr(highway, length(highway)-3, 4) = 'link' then 'yes' else 'no' end as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('highway_motorway',380), ('highway_trunk',370), ('highway_primary',360), ('highway_secondary',350), ('highway_tertiary',340), ('highway_residential',330), ('highway_unclassified',330), ('highway_road',330), ('highway_living_street',320), ('highway_pedestrian',310), ('highway_raceway',300), ('highway_motorway_link',240), ('highway_trunk_link',230), ('highway_primary_link',220), ('highway_secondary_link',210), ('highway_tertiary_link',200), ('highway_service',150), ('highway_track',110), ('highway_path',100), ('highway_footway',100), ('highway_bridleway',100), ('highway_cycleway',100), ('highway_steps',100), ('highway_platform',90), ('highway_proposed',20), ('highway_construction',10)) as ordertable (feature, prio) on ('highway_' || planet_osm_line.highway) = ordertable.feature where (tunnel='yes' or tunnel='building_passage' or covered='yes')) union all (select way, prio, coalesce(('railway_' ||(case when railway='preserved' and service in ('spur','siding','yard') then 'INT-preserved-ssy'::text when (railway='rail' and service in ('spur','siding','yard')) then 'INT-spur-siding-yard' else railway end)), ('aeroway_' || aeroway)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, null as oneway, 'no' as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('railway_rail',430), ('railway_spur',430), ('railway_siding',430), ('railway_subway',420), ('railway_narrow_gauge',420), ('railway_light_rail',420), ('railway_preserved',420), ('railway_funicular',420), ('railway_monorail',420), ('railway_miniature',420), ('railway_turntable',420), ('railway_tram',410), ('railway_disused',400), ('railway_construction',400), ('aeroway_runway',60), ('aeroway_taxiway',50), ('railway_platform',90)) as ordertable (feature, prio) on coalesce(('railway_' || planet_osm_line.railway), ('aeroway_' || planet_osm_line.aeroway)) = ordertable.feature where (tunnel='yes' or tunnel='building_passage' or covered='yes'))) as features order by layernotnull,prio) as tunnels", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "tunnels", + "class": "tunnels-fill tunnels-casing access directions", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "tunnels", + "properties": { + "group-by": "layernotnull" + } + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where \"historic\"='citywalls') as citywalls", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "citywalls", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "citywalls" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where \"historic\"='castle_walls') as castlewalls", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "castlewalls", + "class": "castlewalls", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "castlewalls" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_polygon where \"historic\"='castle_walls') as castlewalls_poly", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "castlewalls-poly", + "class": "castlewalls", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "castlewalls-poly" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,landuse,leisure\n from planet_osm_polygon\n where (landuse = 'military') and building is null\n ) as landuse_overlay", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "landuse-overlay", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "landuse-overlay" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way, barrier from planet_osm_line where barrier is not null) as line_barriers", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "line-barriers", + "class": "barriers", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "line-barriers" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,\"natural\",man_made from planet_osm_line where \"natural\" = 'cliff' or man_made = 'embankment') as cliffs", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "cliffs", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "cliffs" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,barrier from planet_osm_polygon where barrier is not null) as area_barriers", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "area-barriers", + "class": "barriers", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "area-barriers" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,\"natural\" from planet_osm_line where \"natural\" = 'tree_row') as tree_row", + "extent": "-20037508,-19929239,20037508,19929239", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "tree-row", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "tree-row" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -84.96651228427099, + 179.99999692067183, + 84.96651228427098 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where route='ferry' ) as ferry_routes", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "ferry-routes", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "ferry-routes" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select distinct on (p.way) p.way as way,l.highway as int_tc_type,case when l.service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as int_tc_service\n from planet_osm_point p\n join planet_osm_line l\n on ST_DWithin(p.way,l.way,0.1)\n join (values\n ('tertiary',1),\n ('unclassified',2),\n ('residential',3),\n ('living_street',4),\n ('service',5)\n ) as v (highway,prio)\n on v.highway=l.highway\n where p.highway='turning_circle' or p.highway='turning_loop' \n order by p.way,v.prio\n ) as turning_circle_casing", + "extent": "-20037508,-19929239,20037508,19929239", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "turning-circle-casing", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "turning-circle-casing" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,coalesce(('highway_' || (case when highway in ('residential','unclassified','pedestrian','service','footway','cycleway','track','path','platform') then highway else null end)), ('railway_' || (case when railway in ('platform') then railway else null end))) as feature from planet_osm_polygon\n where highway in ('residential','unclassified','pedestrian','service','footway','track','path','platform')\n or railway in ('platform')\n order by z_order,way_area desc) as highway_area_casing", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "highway-area-casing", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "highway-area-casing" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select * from ((select way, prio, ('highway_' || (case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, case when oneway in ('yes', '-1') and highway in ('motorway','motorway_link','trunk','trunk_link','primary','primary_link','secondary','secondary_link','tertiary','tertiary_link','residential','unclassified','road','service','pedestrian','raceway','living_street','construction') then oneway else null end as oneway, case when substr(highway, length(highway)-3, 4) = 'link' then 'yes' else 'no' end as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('highway_motorway',380), ('highway_trunk',370), ('highway_primary',360), ('highway_secondary',350), ('highway_tertiary',340), ('highway_residential',330), ('highway_unclassified',330), ('highway_road',330), ('highway_living_street',320), ('highway_pedestrian',310), ('highway_raceway',300), ('highway_motorway_link',240), ('highway_trunk_link',230), ('highway_primary_link',220), ('highway_secondary_link',210), ('highway_tertiary_link',200), ('highway_service',150), ('highway_track',110), ('highway_path',100), ('highway_footway',100), ('highway_bridleway',100), ('highway_cycleway',100), ('highway_steps',100), ('highway_platform',90), ('highway_proposed',20), ('highway_construction',10)) as ordertable (feature, prio) on ('highway_' || planet_osm_line.highway) = ordertable.feature where (tunnel is null or not tunnel in ('yes','building_passage')) and (covered is null or not covered='yes') and (bridge is null or not bridge in ('yes','viaduct'))) union all (select way, prio, coalesce(('railway_' ||(case when railway='preserved' and service in ('spur','siding','yard') then 'INT-preserved-ssy'::text when (railway='rail' and service in ('spur','siding','yard')) then 'INT-spur-siding-yard' else railway end)), ('aeroway_' || aeroway)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, null as oneway, 'no' as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('railway_rail',430), ('railway_spur',430), ('railway_siding',430), ('railway_subway',420), ('railway_narrow_gauge',420), ('railway_light_rail',420), ('railway_preserved',420), ('railway_funicular',420), ('railway_monorail',420), ('railway_miniature',420), ('railway_turntable',420), ('railway_tram',410), ('railway_disused',400), ('railway_construction',400), ('aeroway_runway',60), ('aeroway_taxiway',50), ('railway_platform',90)) as ordertable (feature, prio) on coalesce(('railway_' || planet_osm_line.railway), ('aeroway_' || planet_osm_line.aeroway)) = ordertable.feature where (tunnel is null or not tunnel in ('yes','building_passage')) and (covered is null or not covered='yes') and (bridge is null or not bridge in ('yes','viaduct')))) as features order by prio) as roads_casing", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-casing", + "class": "roads-casing", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-casing" + }, + { + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,coalesce(('highway_' || (case when highway in ('residential','unclassified','pedestrian','service','footway','cycleway','living_street','track','path','platform','services') then highway else null end)), ('railway_' || (case when railway in ('platform') then railway else null end)), (('aeroway_' || case when aeroway in ('runway','taxiway','helipad') then aeroway else null end))) as feature from planet_osm_polygon\n where highway in ('residential','unclassified','pedestrian','service','footway','living_street','track','path','platform','services')\n or railway in ('platform')\n or aeroway in ('runway','taxiway','helipad')\n order by z_order,way_area desc) as highway_area_fill", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "highway-area-fill", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "highway-area-fill" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select * from ((select way, prio, ('highway_' || (case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, case when oneway in ('yes', '-1') and highway in ('motorway','motorway_link','trunk','trunk_link','primary','primary_link','secondary','secondary_link','tertiary','tertiary_link','residential','unclassified','road','service','pedestrian','raceway','living_street','construction') then oneway else null end as oneway, case when substr(highway, length(highway)-3, 4) = 'link' then 'yes' else 'no' end as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('highway_motorway',380), ('highway_trunk',370), ('highway_primary',360), ('highway_secondary',350), ('highway_tertiary',340), ('highway_residential',330), ('highway_unclassified',330), ('highway_road',330), ('highway_living_street',320), ('highway_pedestrian',310), ('highway_raceway',300), ('highway_motorway_link',240), ('highway_trunk_link',230), ('highway_primary_link',220), ('highway_secondary_link',210), ('highway_tertiary_link',200), ('highway_service',150), ('highway_track',110), ('highway_path',100), ('highway_footway',100), ('highway_bridleway',100), ('highway_cycleway',100), ('highway_steps',100), ('highway_platform',90), ('highway_proposed',20), ('highway_construction',10)) as ordertable (feature, prio) on ('highway_' || planet_osm_line.highway) = ordertable.feature where (tunnel is null or not tunnel in ('yes','building_passage')) and (covered is null or not covered='yes') and (bridge is null or not bridge in ('yes','viaduct'))) union all (select way, prio, coalesce(('railway_' ||(case when railway='preserved' and service in ('spur','siding','yard') then 'INT-preserved-ssy'::text when (railway='rail' and service in ('spur','siding','yard')) then 'INT-spur-siding-yard' else railway end)), ('aeroway_' || aeroway)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, null as oneway, 'no' as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('railway_rail',430), ('railway_spur',430), ('railway_siding',430), ('railway_subway',420), ('railway_narrow_gauge',420), ('railway_light_rail',420), ('railway_preserved',420), ('railway_funicular',420), ('railway_monorail',420), ('railway_miniature',420), ('railway_turntable',420), ('railway_tram',410), ('railway_disused',400), ('railway_construction',400), ('aeroway_runway',60), ('aeroway_taxiway',50), ('railway_platform',90)) as ordertable (feature, prio) on coalesce(('railway_' || planet_osm_line.railway), ('aeroway_' || planet_osm_line.aeroway)) = ordertable.feature where (tunnel is null or not tunnel in ('yes','building_passage')) and (covered is null or not covered='yes') and (bridge is null or not bridge in ('yes','viaduct')))) as features order by prio) as roads_fill", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-fill", + "class": "roads-fill access directions", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-fill" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select distinct on (p.way) p.way as way,l.highway as int_tc_type,case when l.service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as int_tc_service\n from planet_osm_point p\n join planet_osm_line l\n on ST_DWithin(p.way,l.way,0.1)\n join (values\n ('tertiary',1),\n ('unclassified',2),\n ('residential',3),\n ('living_street',4),\n ('service',5)\n ) as v (highway,prio)\n on v.highway=l.highway\n where p.highway='turning_circle' or p.highway='turning_loop' \n order by p.way,v.prio\n ) as turning_circle_fill", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "turning-circle-fill", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "turning-circle-fill" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,aerialway from planet_osm_line where aerialway is not null) as aerialways", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "aerialways", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "aerialways" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,coalesce(('highway_' || (case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end)), ('railway_' || (case when (railway='rail' and service in ('spur','siding','yard')) then 'INT-spur-siding-yard' when railway in ('rail','tram','light_rail','funicular','narrow_gauge') then railway else null end))) as feature,tunnel\n from planet_osm_roads\n where highway is not null\n or (railway is not null and railway!='preserved' and (service is null or service not in ('spur','siding','yard')))\n order by z_order\n ) as roads_low_zoom", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-low-zoom", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-low-zoom" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,waterway,name,case when tunnel in ('yes','culvert') then 'yes' else 'no' end as int_tunnel, 'yes' as bridge from planet_osm_line where waterway in ('river','canal','derelict_canal','stream','drain','ditch','wadi') and bridge in ('yes','aqueduct') order by z_order) as waterway_bridges", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "waterway-bridges", + "class": "water-lines", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "waterway-bridges" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select * from ((select way, prio, ('highway_' || (case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, case when oneway in ('yes', '-1') and highway in ('motorway','motorway_link','trunk','trunk_link','primary','primary_link','secondary','secondary_link','tertiary','tertiary_link','residential','unclassified','road','service','pedestrian','raceway','living_street','construction') then oneway else null end as oneway, case when substr(highway, length(highway)-3, 4) = 'link' then 'yes' else 'no' end as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('highway_motorway',380), ('highway_trunk',370), ('highway_primary',360), ('highway_secondary',350), ('highway_tertiary',340), ('highway_residential',330), ('highway_unclassified',330), ('highway_road',330), ('highway_living_street',320), ('highway_pedestrian',310), ('highway_raceway',300), ('highway_motorway_link',240), ('highway_trunk_link',230), ('highway_primary_link',220), ('highway_secondary_link',210), ('highway_tertiary_link',200), ('highway_service',150), ('highway_track',110), ('highway_path',100), ('highway_footway',100), ('highway_bridleway',100), ('highway_cycleway',100), ('highway_steps',100), ('highway_platform',90), ('highway_proposed',20), ('highway_construction',10)) as ordertable (feature, prio) on ('highway_' || planet_osm_line.highway) = ordertable.feature where bridge in ('yes','viaduct')) union all (select way, prio, coalesce(('railway_' ||(case when railway='preserved' and service in ('spur','siding','yard') then 'INT-preserved-ssy'::text when (railway='rail' and service in ('spur','siding','yard')) then 'INT-spur-siding-yard' else railway end)), ('aeroway_' || aeroway)) as feature, horse, foot, bicycle, tracktype, case when access in ('destination') then 'destination'::text when access in ('no', 'private') then 'no'::text else null end as access, construction, case when service in ('parking_aisle','drive-through','driveway') then 'INT-minor'::text else 'INT-normal'::text end as service, null as oneway, 'no' as link, case when layer is null then '0' else layer end as layernotnull from planet_osm_line join ( values ('railway_rail',430), ('railway_spur',430), ('railway_siding',430), ('railway_subway',420), ('railway_narrow_gauge',420), ('railway_light_rail',420), ('railway_preserved',420), ('railway_funicular',420), ('railway_monorail',420), ('railway_miniature',420), ('railway_turntable',420), ('railway_tram',410), ('railway_disused',400), ('railway_construction',400), ('aeroway_runway',60), ('aeroway_taxiway',50), ('railway_platform',90)) as ordertable (feature, prio) on coalesce(('railway_' || planet_osm_line.railway), ('aeroway_' || planet_osm_line.aeroway)) = ordertable.feature where bridge in ('yes','viaduct'))) as features order by layernotnull,prio) as bridges", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "bridges", + "class": "bridges-fill bridges-casing access directions", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "bridges", + "properties": { + "group-by": "layernotnull" + } + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where highway='bus_guideway' and (tunnel is null or tunnel != 'yes')) as guideways", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "guideways", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "guideways" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,admin_level\n from planet_osm_roads\n where \"boundary\"='administrative'\n and admin_level in ('0','1','2','3','4')\n ) as admin_01234", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "admin-01234", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "admin-01234" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,admin_level\n from planet_osm_roads\n where \"boundary\"='administrative'\n and admin_level in ('5','6','7','8')\n ) as admin_5678", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "admin-5678", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "admin-5678" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,admin_level\n from planet_osm_roads\n where \"boundary\"='administrative'\n and admin_level in ('9', '10')\n ) as admin_other", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "admin-other", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "admin-other" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where \"power\"='minor_line') as power_minorline", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "power-minorline", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "power-minorline" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where \"power\"='line') as power_line", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "power-line", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "power-line" + }, + { + "geometry": "point", + "extent": [ + -179.58997888396897, + -85.051, + 179.38330358817018, + 82.48332318035943 + ], + "id": "nepopulated", + "class": "", + "Datasource": { + "file": "data/ne_10m_populated_places/ne_10m_populated_places_fixed.shp", + "type": "shape", + "encoding": "windows-1252" + }, + "srs-name": "WGS84", + "srs": "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs", + "advanced": { + "encoding": "windows-1252" + }, + "name": "nepopulated" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,place,name,ref\n from planet_osm_point\n where place in ('country','state')\n ) as placenames_large", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "placenames-large", + "class": "country state", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "placenames-large" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,place,name,ref\n from planet_osm_point\n where place in ('city','town') and capital='yes'\n ) as placenames_capital", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "placenames-capital", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "placenames-capital" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,place,name\n from planet_osm_point\n where place in ('city','town')\n and (capital is null or capital != 'yes')\n ) as placenames_medium", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "placenames-medium", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "placenames-medium" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,place,name\n from planet_osm_point\n where place in ('suburb','village','hamlet','neighbourhood','locality','isolated_dwelling','farm')\n ) as placenames_small", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "placenames-small", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "placenames-small" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,name,railway,aerialway,disused\n from planet_osm_point\n where railway in ('station','halt','tram_stop','subway_entrance')\n or aerialway='station'\n ) as stations", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "stations", + "class": "stations", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "stations" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,name,railway,aerialway,disused\n from planet_osm_polygon\n where railway in ('station','halt','tram_stop')\n or aerialway='station'\n ) as stations_poly", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "stations-poly", + "class": "stations", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "stations-poly" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,name,way_area\n from planet_osm_polygon\n where \"natural\"='glacier' and building is null\n order by way_area desc\n ) as glaciers_text", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "glaciers-text", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "glaciers-text" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select *\n from planet_osm_point\n where aeroway in ('aerodrome','helipad')\n or barrier in ('bollard','gate','lift_gate','block')\n or highway in ('mini_roundabout','gate')\n or man_made in ('lighthouse','power_wind','windmill','mast')\n or (power='generator' and (\"generator:source\"='wind' or power_source='wind'))\n or \"natural\" in ('peak','volcano','spring','tree','cave_entrance')\n or railway='level_crossing'\n ) as amenity_symbols", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "amenity-symbols", + "class": "symbols", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "amenity-symbols" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select *\n from planet_osm_polygon\n where aeroway in ('aerodrome','helipad')\n or barrier in ('bollard','gate','lift_gate','block')\n or highway in ('mini_roundabout','gate')\n or man_made in ('lighthouse','power_wind','windmill','mast')\n or (power='generator' and (\"generator:source\"='wind' or power_source='wind'))\n or \"natural\" in ('peak','volcano','spring','tree')\n or railway='level_crossing'\n ) as amenity_symbols_poly", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "amenity-symbols-poly", + "class": "symbols", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "amenity-symbols-poly" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,coalesce('aeroway_' || aeroway, 'shop_' || case when shop in ('supermarket', 'bakery', 'butcher', 'clothes', 'fashion', 'convenience', 'department_store', 'doityourself', 'florist', 'hairdresser', 'car', 'car_repair', 'bicycle') then shop when not shop is null then 'other' else null end, 'amenity_' || amenity, 'leisure_' || leisure, 'landuse_' || landuse, 'man_made_' || man_made, 'natural_' || \"natural\", 'place_' || place, 'tourism_' || tourism, 'military_' || military, 'waterway_' || waterway, 'historic_' || historic, 'lock_' || lock, 'highway_' || highway) as feature,access,religion\n from planet_osm_polygon\n where amenity is not null\n or shop in ('accessories', 'alcohol', 'antique', 'antiques', 'appliance', 'art', 'baby_goods', 'bag', 'bags', 'bakery', 'bathroom_furnishing', 'beauty', 'bed', 'betting', 'beverages', 'bicycle', 'boat', 'bookmaker', 'books', 'boutique', 'builder', 'building_materials', 'butcher', 'camera', 'car', 'car_parts', 'car_repair', 'car_service', 'carpet', 'charity', 'cheese', 'chemist', 'chocolate', 'clothes', 'coffee', 'communication', 'computer', 'confectionery', 'convenience', 'copyshop', 'cosmetics', 'craft', 'curtain', 'dairy', 'deli', 'delicatessen', 'department_store', 'discount', 'dive', 'doityourself', 'dry_cleaning', 'e-cigarette', 'electrical', 'electronics', 'energy', 'erotic', 'estate_agent', 'fabric', 'farm', 'fashion', 'fish', 'fishing', 'fishmonger', 'flooring', 'florist', 'food', 'frame', 'frozen_food', 'funeral_directors', 'furnace', 'furniture', 'gallery', 'gambling', 'games', 'garden_centre', 'gas', 'general', 'gift', 'glaziery', 'greengrocer', 'grocery', 'hairdresser', 'hardware', 'health', 'health_food', 'hearing_aids', 'herbalist', 'hifi', 'hobby', 'household', 'houseware', 'hunting', 'ice_cream', 'insurance', 'interior_decoration', 'jewellery', 'jewelry', 'kiosk', 'kitchen', 'laundry', 'leather', 'lighting', 'locksmith', 'lottery', 'mall', 'market', 'massage', 'medical', 'medical_supply', 'mobile_phone', 'money_lender', 'motorcycle', 'motorcycle_repair', 'music', 'musical_instrument', 'newsagent', 'office_supplies', 'optician', 'organic', 'outdoor', 'paint', 'pastry', 'pawnbroker', 'perfumery', 'pet', 'pets', 'pharmacy', 'phone', 'photo', 'photo_studio', 'photography', 'pottery', 'printing', 'radiotechnics', 'real_estate', 'religion', 'rental', 'salon', 'scuba_diving', 'seafood', 'second_hand', 'sewing', 'shoe_repair', 'shoes', 'shopping_centre', 'solarium', 'souvenir', 'sports', 'stationery', 'supermarket', 'tailor', 'tanning', 'tattoo', 'tea', 'ticket', 'tiles', 'tobacco', 'toys', 'trade', 'travel_agency', 'tyres', 'vacuum_cleaner', 'variety_store', 'video', 'video_games', 'watches', 'wholesale', 'wine', 'winery', 'yes')\n or tourism in ('alpine_hut','camp_site','picnic_site','caravan_site','guest_house','hostel','hotel','motel','museum','viewpoint','bed_and_breakfast','information','chalet')\n or highway in ('bus_stop','traffic_signals')\n or man_made in ('mast','water_tower')\n or historic in ('memorial','archaeological_site')\n or leisure in ('playground', 'picnic_table')\n order by way_area desc ) as amenity_points_poly", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "amenity-points-poly", + "class": "points", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "amenity-points-poly" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,coalesce('aeroway_' || aeroway, 'shop_' || case when shop in ('supermarket', 'bakery', 'butcher', 'clothes', 'fashion', 'convenience', 'department_store', 'doityourself', 'florist', 'hairdresser', 'car', 'car_repair', 'bicycle') then shop when not shop is null then 'other' else null end, 'amenity_' || amenity, 'leisure_' || leisure, 'landuse_' || landuse, 'man_made_' || man_made, 'natural_' || \"natural\", 'place_' || place, 'tourism_' || tourism, 'military_' || military, 'waterway_' || waterway, 'historic_' || historic, 'lock_' || lock, 'highway_' || highway) as feature,access,religion\n from planet_osm_point\n where shop in ('accessories', 'alcohol', 'antique', 'antiques', 'appliance', 'art', 'baby_goods', 'bag', 'bags', 'bakery', 'bathroom_furnishing', 'beauty', 'bed', 'betting', 'beverages', 'bicycle', 'boat', 'bookmaker', 'books', 'boutique', 'builder', 'building_materials', 'butcher', 'camera', 'car', 'car_parts', 'car_repair', 'car_service', 'carpet', 'charity', 'cheese', 'chemist', 'chocolate', 'clothes', 'coffee', 'communication', 'computer', 'confectionery', 'convenience', 'copyshop', 'cosmetics', 'craft', 'curtain', 'dairy', 'deli', 'delicatessen', 'department_store', 'discount', 'dive', 'doityourself', 'dry_cleaning', 'e-cigarette', 'electrical', 'electronics', 'energy', 'erotic', 'estate_agent', 'fabric', 'farm', 'fashion', 'fish', 'fishing', 'fishmonger', 'flooring', 'florist', 'food', 'frame', 'frozen_food', 'funeral_directors', 'furnace', 'furniture', 'gallery', 'gambling', 'games', 'garden_centre', 'gas', 'general', 'gift', 'glaziery', 'greengrocer', 'grocery', 'hairdresser', 'hardware', 'health', 'health_food', 'hearing_aids', 'herbalist', 'hifi', 'hobby', 'household', 'houseware', 'hunting', 'ice_cream', 'insurance', 'interior_decoration', 'jewellery', 'jewelry', 'kiosk', 'kitchen', 'laundry', 'leather', 'lighting', 'locksmith', 'lottery', 'mall', 'market', 'massage', 'medical', 'medical_supply', 'mobile_phone', 'money_lender', 'motorcycle', 'motorcycle_repair', 'music', 'musical_instrument', 'newsagent', 'office_supplies', 'optician', 'organic', 'outdoor', 'paint', 'pastry', 'pawnbroker', 'perfumery', 'pet', 'pets', 'pharmacy', 'phone', 'photo', 'photo_studio', 'photography', 'pottery', 'printing', 'radiotechnics', 'real_estate', 'religion', 'rental', 'salon', 'scuba_diving', 'seafood', 'second_hand', 'sewing', 'shoe_repair', 'shoes', 'shopping_centre', 'solarium', 'souvenir', 'sports', 'stationery', 'supermarket', 'tailor', 'tanning', 'tattoo', 'tea', 'ticket', 'tiles', 'tobacco', 'toys', 'trade', 'travel_agency', 'tyres', 'vacuum_cleaner', 'variety_store', 'video', 'video_games', 'watches', 'wholesale', 'wine', 'winery', 'yes')\n or amenity is not null\n or tourism in ('alpine_hut','picnic_site','camp_site','caravan_site','guest_house','hostel','hotel','motel','museum','viewpoint','bed_and_breakfast','information','chalet')\n or highway in ('bus_stop','traffic_signals','ford')\n or man_made in ('mast','water_tower')\n or historic in ('memorial','archaeological_site')\n or waterway='lock'\n or lock='yes'\n or leisure in ('playground','slipway','picnic_table')\n ) as amenity_points", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "amenity-points", + "class": "points", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "amenity-points" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_point where power='tower') as power_towers", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "power-towers", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "power-towers" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_point where power='pole') as power_poles", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "power-poles", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "power-poles" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(SELECT way, highway, height, width, refs FROM\n (SELECT \n way, highway, \n array_length(refs,1) AS height, \n (SELECT MAX(char_length(ref)) FROM unnest(refs) AS u(ref)) AS width, \n array_to_string(refs,E'\\n') AS refs\n FROM (\n SELECT \n way, \n highway, \n string_to_array(ref,';') AS refs\n FROM planet_osm_roads\n WHERE highway IN ('motorway','trunk','primary','secondary')\n AND ref IS NOT NULL\n ) AS p) AS q\n WHERE height <= 4 AND width <= 11) AS roads_text_ref_low_zoom", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-text-ref-low-zoom", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-text-ref-low-zoom" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,highway,junction,ref,name\n from planet_osm_point\n where highway='motorway_junction' or highway = 'traffic_signals' or junction = 'yes'\n ) as junctions", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "junctions", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "junctions" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(SELECT way, highway, height, width, refs FROM\n (SELECT \n way, highway, \n array_length(refs,1) AS height, \n (SELECT MAX(char_length(ref)) FROM unnest(refs) AS u(ref)) AS width, \n array_to_string(refs,E'\\n') AS refs\n FROM (\n SELECT \n way, \n COALESCE(highway, aeroway) AS highway, \n string_to_array(ref,';') AS refs\n FROM planet_osm_line\n WHERE (highway IN ('motorway','trunk','primary','secondary','tertiary','unclassified','residential') OR aeroway IN ('runway','taxiway'))\n AND ref IS NOT NULL\n ) AS p) AS q\n WHERE height <= 4 AND width <= 11) AS roads_text_ref", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-text-ref", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-text-ref" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way, way_area/(!pixel_width!*!pixel_height!) AS way_pixels, highway, name\n from planet_osm_polygon\n where highway in ('residential','unclassified','pedestrian','service','footway','cycleway','living_street','track','path','platform') or railway in ('platform') and name is not null\n ) as roads_area_text_name", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-area-text-name", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-area-text-name" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way, case when substr(highway, length(highway)-3, 4) = 'link' then substr(highway,0,length(highway)-4) else highway end, name\n from planet_osm_line\n where highway in ('motorway','motorway_link','trunk','trunk_link','primary','primary_link','secondary','secondary_link','tertiary','tertiary_link','residential','unclassified','road','service','pedestrian','raceway','living_street', 'construction','proposed') \n and name is not null\n ) as roads_text_name", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "roads-text-name", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "roads-text-name" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way, highway, name\n from planet_osm_line\n where highway in ('bridleway', 'footway', 'cycleway', 'path', 'track', 'steps') \n and name is not null\n ) as paths_text_name", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "paths-text-name", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "paths-text-name" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,coalesce('aeroway_' || aeroway, 'shop_' || case when shop in ('supermarket', 'bakery', 'butcher', 'clothes', 'fashion', 'convenience', 'department_store', 'doityourself', 'florist', 'hairdresser', 'car', 'car_repair', 'bicycle') then shop when not shop is null then 'other' else null end, 'amenity_' || amenity, 'leisure_' || leisure, 'landuse_' || landuse, 'man_made_' || man_made, 'natural_' || \"natural\", 'place_' || place, 'tourism_' || tourism, 'military_' || military, 'waterway_' || waterway, 'historic_' || historic, 'highway_' || highway) as feature,access,NULL as ele,name,ref,way_area\n from planet_osm_polygon\n where amenity is not null\n or shop in ('accessories', 'alcohol', 'antique', 'antiques', 'appliance', 'art', 'baby_goods', 'bag', 'bags', 'bakery', 'bathroom_furnishing', 'beauty', 'bed', 'betting', 'beverages', 'bicycle', 'boat', 'bookmaker', 'books', 'boutique', 'builder', 'building_materials', 'butcher', 'camera', 'car', 'car_parts', 'car_repair', 'car_service', 'carpet', 'charity', 'cheese', 'chemist', 'chocolate', 'clothes', 'coffee', 'communication', 'computer', 'confectionery', 'convenience', 'copyshop', 'cosmetics', 'craft', 'curtain', 'dairy', 'deli', 'delicatessen', 'department_store', 'discount', 'dive', 'doityourself', 'dry_cleaning', 'e-cigarette', 'electrical', 'electronics', 'energy', 'erotic', 'estate_agent', 'fabric', 'farm', 'fashion', 'fish', 'fishing', 'fishmonger', 'flooring', 'florist', 'food', 'frame', 'frozen_food', 'funeral_directors', 'furnace', 'furniture', 'gallery', 'gambling', 'games', 'garden_centre', 'gas', 'general', 'gift', 'glaziery', 'greengrocer', 'grocery', 'hairdresser', 'hardware', 'health', 'health_food', 'hearing_aids', 'herbalist', 'hifi', 'hobby', 'household', 'houseware', 'hunting', 'ice_cream', 'insurance', 'interior_decoration', 'jewellery', 'jewelry', 'kiosk', 'kitchen', 'laundry', 'leather', 'lighting', 'locksmith', 'lottery', 'mall', 'market', 'massage', 'medical', 'medical_supply', 'mobile_phone', 'money_lender', 'motorcycle', 'motorcycle_repair', 'music', 'musical_instrument', 'newsagent', 'office_supplies', 'optician', 'organic', 'outdoor', 'paint', 'pastry', 'pawnbroker', 'perfumery', 'pet', 'pets', 'pharmacy', 'phone', 'photo', 'photo_studio', 'photography', 'pottery', 'printing', 'radiotechnics', 'real_estate', 'religion', 'rental', 'salon', 'scuba_diving', 'seafood', 'second_hand', 'sewing', 'shoe_repair', 'shoes', 'shopping_centre', 'solarium', 'souvenir', 'sports', 'stationery', 'supermarket', 'tailor', 'tanning', 'tattoo', 'tea', 'ticket', 'tiles', 'tobacco', 'toys', 'trade', 'travel_agency', 'tyres', 'vacuum_cleaner', 'variety_store', 'video', 'video_games', 'watches', 'wholesale', 'wine', 'winery', 'yes')\n or leisure is not null\n or landuse is not null\n or tourism is not null\n or \"natural\" is not null\n or man_made in ('lighthouse','windmill')\n or place='island'\n or military='danger_area'\n or historic in ('memorial','archaeological_site')\n order by way_area desc ) as text_poly", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "text-poly", + "class": "text", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "text-poly" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,coalesce('aeroway_' || aeroway, 'shop_' || case when shop in ('supermarket', 'bakery', 'butcher', 'clothes', 'fashion', 'convenience', 'department_store', 'doityourself', 'florist', 'hairdresser', 'car', 'car_repair', 'bicycle') then shop when not shop is null then 'other' else null end, 'amenity_' || amenity, 'leisure_' || leisure, 'landuse_' || landuse, 'man_made_' || man_made, 'natural_' || \"natural\", 'place_' || place, 'tourism_' || tourism, 'military_' || military, 'waterway_' || waterway, 'historic_' || historic, 'highway_' || highway) as feature,access,ele,name,ref,NULL as way_area\n from planet_osm_point\n where amenity is not null\n or shop in ('accessories', 'alcohol', 'antique', 'antiques', 'appliance', 'art', 'baby_goods', 'bag', 'bags', 'bakery', 'bathroom_furnishing', 'beauty', 'bed', 'betting', 'beverages', 'bicycle', 'boat', 'bookmaker', 'books', 'boutique', 'builder', 'building_materials', 'butcher', 'camera', 'car', 'car_parts', 'car_repair', 'car_service', 'carpet', 'charity', 'cheese', 'chemist', 'chocolate', 'clothes', 'coffee', 'communication', 'computer', 'confectionery', 'convenience', 'copyshop', 'cosmetics', 'craft', 'curtain', 'dairy', 'deli', 'delicatessen', 'department_store', 'discount', 'dive', 'doityourself', 'dry_cleaning', 'e-cigarette', 'electrical', 'electronics', 'energy', 'erotic', 'estate_agent', 'fabric', 'farm', 'fashion', 'fish', 'fishing', 'fishmonger', 'flooring', 'florist', 'food', 'frame', 'frozen_food', 'funeral_directors', 'furnace', 'furniture', 'gallery', 'gambling', 'games', 'garden_centre', 'gas', 'general', 'gift', 'glaziery', 'greengrocer', 'grocery', 'hairdresser', 'hardware', 'health', 'health_food', 'hearing_aids', 'herbalist', 'hifi', 'hobby', 'household', 'houseware', 'hunting', 'ice_cream', 'insurance', 'interior_decoration', 'jewellery', 'jewelry', 'kiosk', 'kitchen', 'laundry', 'leather', 'lighting', 'locksmith', 'lottery', 'mall', 'market', 'massage', 'medical', 'medical_supply', 'mobile_phone', 'money_lender', 'motorcycle', 'motorcycle_repair', 'music', 'musical_instrument', 'newsagent', 'office_supplies', 'optician', 'organic', 'outdoor', 'paint', 'pastry', 'pawnbroker', 'perfumery', 'pet', 'pets', 'pharmacy', 'phone', 'photo', 'photo_studio', 'photography', 'pottery', 'printing', 'radiotechnics', 'real_estate', 'religion', 'rental', 'salon', 'scuba_diving', 'seafood', 'second_hand', 'sewing', 'shoe_repair', 'shoes', 'shopping_centre', 'solarium', 'souvenir', 'sports', 'stationery', 'supermarket', 'tailor', 'tanning', 'tattoo', 'tea', 'ticket', 'tiles', 'tobacco', 'toys', 'trade', 'travel_agency', 'tyres', 'vacuum_cleaner', 'variety_store', 'video', 'video_games', 'watches', 'wholesale', 'wine', 'winery', 'yes')\n or leisure is not null\n or landuse is not null\n or tourism is not null\n or \"natural\" is not null\n or man_made in ('lighthouse','windmill')\n or place='island'\n or military='danger_area'\n or aeroway='gate'\n or waterway='lock'\n or historic in ('memorial','archaeological_site')\n ) as text", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "text", + "class": "text", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "text" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select name, way, way_area from planet_osm_polygon where building is not null and building not in ('no','station','supermarket')) as building_text", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "building-text", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "building-text" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way from planet_osm_line where \"addr:interpolation\" is not null) as interpolation", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "interpolation", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "interpolation" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,\"addr:housenumber\" from planet_osm_polygon where \"addr:housenumber\" is not null and building is not null\n union\n select way,\"addr:housenumber\" from planet_osm_point where \"addr:housenumber\" is not null\n ) as housenumbers", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "housenumbers", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "housenumbers" + }, + { + "geometry": "point", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,\"addr:housename\" from planet_osm_polygon where \"addr:housename\" is not null and building is not null\n union\n select way,\"addr:housename\" from planet_osm_point where \"addr:housename\" is not null\n ) as housenames", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "housenames", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "housenames" + }, + { + "geometry": "linestring", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": " (select way,waterway,lock,name,case when tunnel in ('yes','culvert') then 'yes' else 'no' end as int_tunnel\n from planet_osm_line\n where waterway in ('weir','river','canal','derelict_canal','stream','drain','ditch','wadi')\n order by z_order\n ) as water_lines_text", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "water-lines-text", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "water-lines-text" + }, + { + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way, name, admin_level from planet_osm_polygon where \"boundary\" = 'administrative' and admin_level in ('0','1','2','3','4','5','6','7','8','9','10')) as admin_text", + "key_field": "", + "geometry_field": "way", + "extent_cache": "custom", + "extent": "-20037508,-20037508,20037508,20037508", + "dbname": "gis" + }, + "id": "admin-text", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "admin-text", + "geometry": "linestring" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,way_area,name,boundary from planet_osm_polygon where (boundary='national_park' or leisure='nature_reserve') and building is null) as national_park_boundaries", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "nature-reserve-boundaries", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "nature-reserve-boundaries" + }, + { + "geometry": "polygon", + "extent": [ + -179.99999692067183, + -85.05112877980659, + 179.99999692067183, + 85.05112877980659 + ], + "Datasource": { + "type": "postgis", + "table": "(select way,name,tourism from planet_osm_polygon where tourism='theme_park') as theme_park", + "extent": "-20037508,-20037508,20037508,20037508", + "key_field": "", + "geometry_field": "way", + "dbname": "gis" + }, + "id": "theme-park", + "class": "", + "srs-name": "900913", + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over", + "advanced": {}, + "name": "theme-park" + } + ], + "scale": 1, + "metatile": 2, + "name": "OpenStreetMap Carto", + "description": "A faithful reimplementation of the standard OpenStreetMap style" +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/README.md openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/README.md --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/README.md 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/README.md 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,84 @@ +# OpenStreetMap Carto + +![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](http://www.openstreetmap.org). + +These stylesheets can be used in your own cartography projects, and are designed to be easily +customised. They work with [TileMill](http://www.mapbox.com/tilemill/) 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 +are updated from each point release. They supersede the previous [XML-based stylesheets](https://trac.openstreetmap.org/browser/subversion/applications/rendering/mapnik). + +# Installation + +You need a PostGIS database populated with OpenStreetMap data in the standard +osm2pgsql database layout, along with auxillary shapefiles. See [INSTALL.md](INSTALL.md). + +# Contributing + +Contributions to this project are welcome, see [CONTRIBUTING.md](CONTRIBUTING.md) +for full details. + +# Versioning + +This project follows a MAJOR.MINOR.PATCH versioning system. In the context of a +cartographic project you can expect the following: + +* PATCH: When a patch version is released, there would be no reason not to + upgrade. PATCH versions contain only bugfixes e.g. stylesheets won't compile, + features are missing by mistake, etc. +* MINOR: These are routine releases and happen every 1-3 weeks. They will + contain changes to what's shown on the map, how they appear, new features + added and old features removed. They may rarely contain changes to assets i.e. + 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. + +# Roadmap + +## Initial Release (v1.0.0, December 2012) + +This was a full re-implementation of the original OSM style, with only a few bugs discovered later. There's been +no interest in creating further point releases in the v1.x series. + +## Current work (v2.x) + +The v2.x series focuses on refactoring the style, both to to fix glitches and to +leverage new features in CartoCSS / mapnik to simplify the stylesheets with only +small changes to the output. It's also appropriate to pull out the 'old-skool' +tagging methods that are now rarely used. + +Care is being 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. + +The end goal will be a style that remains familiar but is much more suitable for +further development, and/or forking for third-parties to customise. + +## Future (v3.x) + +There are over [300 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. The work done already in v1.0 and v2.0 will make it much easier to process these. + +[issues]: https://github.com/gravitystorm/openstreetmap-carto/issues +[cleverness]: https://github.com/openstreetmap/mapnik-stylesheets/blob/master/inc/settings.xml.inc.template#L16 + +# Alternatives + +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/woodpeck/openstreetmap-carto-german) + +# Maintainers + +* Andy Allan [@gravitystorm](https://github.com/gravitystorm/) +* Matthijs Melissen [@math1985](https://github.com/math1985/) +* Paul Norman [@pnorman](https://github.com/pnorman/) +* Mateusz Konieczny [@mkoniecz](https://github.com/mkoniecz/) diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/roads.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/roads.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/roads.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/roads.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,2340 @@ +/* For the main linear features, such as roads and railways. */ + +@motorway-fill: #89a4cb; +@trunk-fill: #94d494; +@trunk-fill-alternative: #97d397; +@primary-fill: #dd9f9f; +@secondary-fill: #f9d6aa; +@tertiary-fill: #f8f8ba; +@residential-fill: #ffffff; +@service-fill: @residential-fill; +@living-street-fill: #ccc; +@pedestrian-fill: #ededed; +@road-fill: #ddd; +@path-fill: black; +@footway-fill: salmon; +@steps-fill: @footway-fill; +@cycleway-fill: blue; +@bridleway-fill: green; +@track-fill: #996600; +@aeroway-fill: #bbc; +@runway-fill: @aeroway-fill; +@taxiway-fill: @aeroway-fill; +@helipad-fill: @aeroway-fill; + +@default-casing: white; +@motorway-casing: #7788a1; +@trunk-casing: #7eae7e; +@primary-casing: #c57b7e; +@secondary-casing: #cca16a; +@tertiary-casing: #c6c68a; +@residential-casing: #bbb; +@service-casing: @residential-casing; +@living-street-casing: @default-casing; +@living-street-tunnel-casing: #bbb; +@pedestrian-casing: grey; +@path-casing: @default-casing; +@footway-casing: @default-casing; +@steps-casing: @default-casing; +@cycleway-casing: @default-casing; +@bridleway-casing: @default-casing; +@track-casing: @default-casing; + +@residential-construction: #aaa; +@service-construction: #aaa; + +@destination-marking: #c2e0ff; +@private-marking: #efa9a9; + +@tunnel-casing: grey; +@bridge-casing: black; + +@motorway-tunnel-fill: lighten(@motorway-fill, 25%); +@trunk-tunnel-fill: lighten(@trunk-fill, 10%); +@primary-tunnel-fill: lighten(@primary-fill, 10%); +@secondary-tunnel-fill: lighten(@secondary-fill, 5%); +@tertiary-tunnel-fill: lighten(@tertiary-fill, 5%); +@residential-tunnel-fill: darken(@residential-fill, 5%); +@living-street-tunnel-fill: lighten(@living-street-fill, 10%); + +@motorway-width-z12: 3.5; +@motorway-link-width-z12: 1.5; +@trunk-width-z12: 3.5; +@primary-width-z12: 3.5; +@secondary-width-z12: 3; + +@motorway-width-z13: 7; +@motorway-link-width-z13: 4.5; +@trunk-width-z13: 7; +@primary-width-z13: 7; +@secondary-width-z13: 7; +@tertiary-width-z13: 5; +@residential-width-z13: 3; +@bridleway-width-z13: 0.3; +@footway-width-z13: 0.7; +@cycleway-width-z13: 0.7; +@path-width-z13: 0.2; +@track-width-z13: 0.5; +@track-grade1-width-z13: 0.5; +@track-grade2-width-z13: 0.5; +@steps-width-z13: 0.7; + +@tertiary-width-z14: 7.5; +@residential-width-z14: 4.5; +@service-width-z14: 2.5; + +@motorway-width-z15: 12.8; +@motorway-link-width-z15: 7.8; +@trunk-width-z15: 12.8; +@primary-width-z15: 12.8; +@secondary-width-z15: 12.8; +@tertiary-width-z15: 11.2; +@residential-width-z15: 8.3; +@bridleway-width-z15: 1.2; +@footway-width-z15: 1.5; +@cycleway-width-z15: 1.2; +@path-width-z15: 0.5; +@track-width-z15: 1.5; +@track-grade1-width-z15: 0.75; +@track-grade2-width-z15: 0.75; +@steps-width-z15: 4; + +@residential-width-z16: 11.2; +@service-width-z16: 6; +@minor-service-width-z16: 4; + +@motorway-width-z17: 18; +@motorway-link-width-z17: 11.5; +@trunk-width-z17: 18; +@primary-width-z17: 18; +@secondary-width-z17: 18; +@tertiary-width-z17: 15.5; +@residential-width-z17: 15.5; +@service-width-z17: 7; + +@casing-width-z12: 0.5; +@casing-width-z13: 0.5; +@residential-casing-width-z13: 0.5; +@casing-width-z14: 0.5; +@casing-width-z15: 0.7; +@casing-width-z16: 0.7; +@casing-width-z17: 1; + +@bridge-casing-width-z12: 0.5; +@bridge-casing-width-z13: 0.5; +@bridge-casing-width-z14: 0.5; +@bridge-casing-width-z15: 0.75; +@bridge-casing-width-z16: 0.75; +@bridge-casing-width-z17: 0.75; + +@paths-background-width: 1; +@paths-bridge-casing-width: 0.5; +@paths-tunnel-casing-width: 1; + +.roads-casing, .bridges-casing, .tunnels-casing { + ::casing { + [zoom >= 12] { + [feature = 'highway_motorway'] { + line-width: @motorway-width-z12; + [zoom >= 13] { line-width: @motorway-width-z13; } + [zoom >= 15] { line-width: @motorway-width-z15; } + [zoom >= 17] { line-width: @motorway-width-z17; } + [link = 'yes'] { + line-width: @motorway-link-width-z12; + [zoom >= 13] { line-width: @motorway-link-width-z13; } + [zoom >= 15] { line-width: @motorway-link-width-z15; } + [zoom >= 17] { line-width: @motorway-link-width-z17; } + } + line-color: @motorway-casing; + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + line-join: round; + [zoom >= 13] { line-color: @bridge-casing; } + } + } + } + + [feature = 'highway_trunk'] { + [zoom >= 12] { + line-color: @trunk-casing; + line-width: @trunk-width-z12; + [zoom >= 13] { line-width: @trunk-width-z13; } + [zoom >= 15] { line-width: @trunk-width-z15; } + [zoom >= 17] { line-width: @trunk-width-z17; } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + line-join: round; + [zoom >= 13] { line-color: @bridge-casing; } + } + } + } + + [feature = 'highway_primary'] { + [zoom >= 12] { + line-color: @primary-casing; + line-width: @primary-width-z12; + [zoom >= 13] { line-width: @primary-width-z13; } + [zoom >= 15] { line-width: @primary-width-z15; } + [zoom >= 17] { line-width: @primary-width-z17; } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + line-join: round; + [zoom >= 13] { line-color: @bridge-casing; } + } + } + } + + [feature = 'highway_secondary'] { + [zoom >= 12] { + line-color: @secondary-casing; + line-width: @secondary-width-z12; + [zoom >= 13] { line-width: @secondary-width-z13; } + [zoom >= 15] { line-width: @secondary-width-z15; } + [zoom >= 17] { line-width: @secondary-width-z17; } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + [zoom >= 13] { + line-color: @bridge-casing; + line-join: round; + } + } + } + } + + [feature = 'highway_tertiary'] { + [zoom >= 13] { + line-color: @tertiary-casing; + line-width: @tertiary-width-z13; + [zoom >= 14] { line-width: @tertiary-width-z14; } + [zoom >= 15] { line-width: @tertiary-width-z15; } + [zoom >= 17] { line-width: @tertiary-width-z17; } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + [zoom >= 14] { + line-color: @bridge-casing; + line-join: round; + } + } + } + } + + [feature = 'highway_residential'], + [feature = 'highway_unclassified'], + [feature = 'highway_road'] { + [zoom >= 13] { + line-color: @residential-casing; + line-width: @residential-width-z13; + [zoom >= 14] { line-width: @residential-width-z14; } + [zoom >= 15] { line-width: @residential-width-z15; } + [zoom >= 16] { line-width: @residential-width-z16; } + [zoom >= 17] { line-width: @residential-width-z17; } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { + line-dasharray: 4,2; + } + .bridges-casing { + [zoom >= 14] { + line-color: @bridge-casing; + line-join: round; + } + } + } + } + + [feature = 'highway_service'] { + [zoom >= 14][service = 'INT-normal'], + [zoom >= 16][service = 'INT-minor'] { + line-color: @service-casing; + [service = 'INT-normal'] { + line-width: @service-width-z14; + [zoom >= 16] { line-width: @service-width-z16; } + [zoom >= 17] { line-width: @service-width-z17; } + } + [service = 'INT-minor'] { + line-width: @minor-service-width-z16; + } + .roads-casing { + line-join: round; + line-cap: round; + } + .tunnels-casing { line-dasharray: 4,2; } + .bridges-casing { + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_pedestrian'] { + [zoom >= 13] { + line-join: round; + .roads-casing, .tunnels-casing { + line-width: 2; + line-color: @pedestrian-casing; + line-cap: round; + [zoom >= 14] { line-width: 3.6; } + [zoom >= 15] { line-width: 6.5; } + [zoom >= 16] { line-width: 9; } + .tunnels-casing { + line-dasharray: 4,2; + } + } + .bridges-casing { + line-width: 2.2; + line-color: @bridge-casing; + [zoom >= 14] { line-width: 3.8; } + [zoom >= 15] { line-width: 7; } + [zoom >= 16] { line-width: 9.5; } + } + } + } + + [feature = 'highway_living_street'] { + [zoom >= 13] { + line-width: 2.5; + line-color: @living-street-casing; + [zoom >= 14] { line-width: 4; } + [zoom >= 15] { line-width: 6; } + [zoom >= 16] { line-width: 9; } + [zoom >= 17] { line-width: 14.5; } + .roads-casing { + line-cap: round; + line-join: round; + } + .tunnels-casing { + line-color: @living-street-tunnel-casing; + line-dasharray: 4,2; + } + .bridges-casing { + [zoom >= 14] { + line-color: @bridge-casing; + [zoom >= 15] { line-width: 6.2; } + [zoom >= 16] { line-width: 8.9; } + [zoom >= 17] { line-width: 15; } + } + } + } + } + + [feature = 'highway_steps'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @steps-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [zoom >= 15] { line-width: @steps-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_bridleway'], + [feature = 'highway_path'][horse = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @bridleway-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [zoom >= 15] { line-width: @bridleway-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_footway'], + [feature = 'highway_path'][foot = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @footway-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [zoom >= 15] { line-width: @footway-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_cycleway'], + [feature = 'highway_path'][bicycle = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @cycleway-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [zoom >= 15] { line-width: @cycleway-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_path'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @path-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [zoom >= 15] { line-width: @path-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); } + line-color: @bridge-casing; + line-join: round; + } + } + } + + [feature = 'highway_track'] { + .bridges-casing { + [zoom >= 13][access != 'no'] { + line-color: @bridge-casing; + line-join: round; + line-width: @track-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [tracktype = 'grade1'] { + line-width: @track-grade1-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + } + [tracktype = 'grade2'] { + line-width: @track-grade2-width-z13 + 2 * (@paths-background-width + @paths-bridge-casing-width); + } + } + [zoom >= 15] { + line-width: @track-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); + [tracktype = 'grade1'] { + line-width: @track-grade1-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); + } + [tracktype = 'grade2'] { + line-width: @track-grade2-width-z15 + 2 * (@paths-background-width + @paths-bridge-casing-width); + } + } + } + } + + [feature = 'railway_tram'] { + .bridges-casing { + [zoom >= 13] { + line-width: 4; + [zoom >= 15] { + line-width: 5; + } + line-color: black; + line-join: round; + } + } + } + + [feature = 'railway_subway'] { + .bridges-casing { + [zoom >= 14] { + line-width: 5.5; + line-color: black; + line-join: round; + } + } + } + + [feature = 'railway_light_rail'], + [feature = 'railway_funicular'], + [feature = 'railway_narrow_gauge'] { + .bridges-casing { + [zoom >= 14] { + line-width: 5.5; + line-color: black; + line-join: round; + } + } + } + + [feature = 'railway_rail'], + [feature = 'railway_preserved'], + [feature = 'railway_monorail'][zoom >= 14] { + .bridges-casing { + [zoom >= 13] { + line-width: 6.5; + line-color: black; + line-join: round; + } + } + } + + [feature = 'railway_INT-spur-siding-yard'] { + .bridges-casing { + [zoom >= 13] { + line-width: 5.7; + line-color: black; + line-join: round; + } + } + } + + [feature = 'railway_disused'], + [feature = 'railway_construction'], + [feature = 'railway_miniature'][zoom >= 15], + [feature = 'railway_INT-preserved-ssy'][zoom >= 14] { + .bridges-casing { + [zoom >= 13] { + line-width: 6; + line-color: black; + line-join: round; + } + } + } + + [feature = 'aeroway_runway'] { + .bridges-casing { + [zoom >= 14] { + line-width: 19; + line-color: black; + line-join: round; + } + } + } + + [feature = 'aeroway_taxiway'] { + .bridges-casing { + [zoom >= 14] { + line-width: 5; + line-color: black; + line-join: round; + [zoom >= 15] { line-width: 7; } + } + } + } + } + + ::bridges_background { + [feature = 'highway_bridleway'], + [feature = 'highway_path'][horse = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @bridleway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { line-width: @bridleway-width-z15 + 2 * @paths-background-width; } + line-color: @bridleway-casing; + line-join: round; + } + } + } + + [feature = 'highway_footway'], + [feature = 'highway_path'][foot = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @footway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { line-width: @footway-width-z15 + 2 * @paths-background-width; } + line-color: @footway-casing; + line-join: round; + } + } + } + + [feature = 'highway_cycleway'], + [feature = 'highway_path'][bicycle = 'designated'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @cycleway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { line-width: @cycleway-width-z15 + 2 * @paths-background-width; } + line-color: @cycleway-casing; + line-join: round; + } + } + } + + [feature = 'highway_steps'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @steps-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { line-width: @steps-width-z15 + 2 * @paths-background-width; } + line-color: @steps-casing; + line-join: round; + } + } + } + + [feature = 'highway_path'] { + .bridges-casing { + [zoom >= 14][access != 'no'], + [zoom >= 15] { + line-width: @path-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { line-width: @path-width-z15 + 2 * @paths-background-width; } + line-color: @path-casing; + line-join: round; + } + } + } + + [feature = 'highway_track'] { + /* We don't set opacity here, so it's 1.0. Aside from that, it's basically a copy of roads-fill::background in the track part of ::fill */ + .bridges-casing { + [zoom >= 13][access != 'no'] { + line-color: @track-casing; + line-join: round; + line-width: @track-width-z13 + 2 * @paths-background-width; + [tracktype = 'grade1'] { + line-width: @track-grade1-width-z13 + 2 * @paths-background-width; + } + [tracktype = 'grade2'] { + line-width: @track-grade2-width-z13 + 2 * @paths-background-width; + } + } + [zoom >= 15] { + line-width: @track-width-z15 + 2 * @paths-background-width; + [tracktype = 'grade1'] { + line-width: @track-grade1-width-z15 + 2 * @paths-background-width; + } + [tracktype = 'grade2'] { + line-width: @track-grade2-width-z15 + 2 * @paths-background-width; + } + } + } + } + + [feature = 'railway_rail'][zoom >= 13], + [feature = 'railway_preserved'][zoom >= 14], + [feature = 'railway_monorail'][zoom >= 14] { + .bridges-casing { + line-width: 5; + line-color: white; + line-join: round; + } + } + + [feature = 'railway_INT-spur-siding-yard'] { + .bridges-casing { + [zoom >= 13] { + line-width: 4; + line-color: white; + line-join: round; + } + } + } + + [feature = 'railway_disused'], + [feature = 'railway_construction'], + [feature = 'railway_miniature'][zoom >= 15], + [feature = 'railway_INT-preserved-ssy'][zoom >= 14] { + .bridges-casing { + [zoom >= 13] { + line-width: 4.5; + line-color: white; + line-join: round; + } + } + } + + [feature = 'railway_tram'] { + .bridges-casing { + [zoom >= 13] { + line-width: 3; + [zoom >= 15] { + line-width: 4; + } + line-color: white; + } + } + } + + [feature = 'railway_subway'] { + .bridges-casing { + [zoom >= 14] { + line-width: 4; + line-color: white; + line-join: round; + } + } + } + + [feature = 'railway_light_rail'], + [feature = 'railway_funicular'], + [feature = 'railway_narrow_gauge'] { + .bridges-casing { + [zoom >= 14] { + line-width: 4; + line-color: white; + line-join: round; + } + } + } + } +} + +.roads-fill,.bridges-fill,.tunnels-fill { + ::fill { + /* + * The construction rules for small roads are strange, since if construction is null its assumed that + * it's a more major road. The line-width = 0 could be removed by playing with the query to set a construction + * string for non-small roads. + * + * Also note that these rules are quite sensitive to re-ordering, since the instances end up swapping round + * (and then the dashes appear below the fills). See + * https://github.com/gravitystorm/openstreetmap-carto/issues/23 + * https://github.com/mapbox/carto/issues/235 + * https://github.com/mapbox/carto/issues/237 + */ + [feature = 'highway_proposed'], + [feature = 'highway_construction'] { + [zoom >= 12] { + line-width: 2; + line-color: #9cc; + + [construction = 'motorway'], + [construction = 'motorway_link'] { + line-color: @motorway-fill; + } + [construction = 'trunk'], + [construction = 'trunk_link'] { + line-color: @trunk-fill; + } + [construction = 'primary'], + [construction = 'primary_link'] { + line-color: @primary-fill; + } + [construction = 'secondary'], + [construction = 'secondary_link'] { + line-color: @secondary-fill; + } + [construction = 'tertiary'], + [construction = 'tertiary_link'] { + line-color: @tertiary-fill; + [zoom < 13] { + line-width: 0; + b/line-width: 0; + } + } + [construction = 'residential'], + [construction = 'unclassified'], + [construction = 'living_street'] { + line-color: @residential-construction; + [zoom < 13] { + line-width: 0; + b/line-width: 0; + } + } + [construction = 'service'] { + line-color: @service-construction; + [zoom < 14] { + line-width: 0; + b/line-width: 0; + } + } + b/line-width: 2; + b/line-dasharray: 4,2; + b/line-color: white; + [zoom >= 13] { + line-width: 4; + b/line-width: 3.5; + b/line-dasharray: 6,4; + } + [zoom >= 16] { + line-width: 8; + b/line-width: 7; + b/line-dasharray: 8,6; + } + [construction = 'cycleway'] { + [zoom < 14] { + line-width: 0; + b/line-width: 0; + } + line-color: white; + line-width: 3; + line-opacity: 0.4; + b/line-width: 1.2; + b/line-color: #69f; + b/line-dasharray: 2,6; + } + } + } + + [feature = 'highway_motorway'] { + [zoom >= 12] { + line-width: @motorway-width-z12 - 2 * @casing-width-z12; + [zoom >= 13] { line-width: @motorway-width-z13 - 2 * @casing-width-z13; } + [zoom >= 15] { line-width: @motorway-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @motorway-width-z17 - 2 * @casing-width-z17; } + [link = 'yes'] { + line-width: @motorway-link-width-z12 - 2 * @casing-width-z12; + [zoom >= 13] { line-width: @motorway-link-width-z13 - 2 * @casing-width-z13; } + [zoom >= 15] { line-width: @motorway-link-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @motorway-link-width-z17 - 2 * @casing-width-z17; } + } + .roads-fill, .bridges-fill { + line-color: @motorway-fill; + } + .tunnels-fill { + line-color: @motorway-tunnel-fill; + } + .bridges-fill { + line-width: @motorway-width-z12 - 2 * @bridge-casing-width-z12; + [zoom >= 13] { line-width: @motorway-width-z13 - 2 * @bridge-casing-width-z13; } + [zoom >= 15] { line-width: @motorway-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @motorway-width-z17 - 2 * @bridge-casing-width-z17; } + [link = 'yes'] { + line-width: @motorway-link-width-z12 - 2 * @bridge-casing-width-z12; + [zoom >= 13] { line-width: @motorway-link-width-z13 - 2 * @bridge-casing-width-z13; } + [zoom >= 15] { line-width: @motorway-link-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @motorway-link-width-z17 - 2 * @bridge-casing-width-z17; } + } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_trunk'] { + [zoom >= 12] { + line-width: @trunk-width-z12 - 2 * @casing-width-z12; + [zoom >= 13] { line-width: @trunk-width-z13 - 2 * @casing-width-z13; } + [zoom >= 15] { line-width: @trunk-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @trunk-width-z17 - 2 * @casing-width-z17; } + .roads-fill, .bridges-fill { + line-color: @trunk-fill; + } + .tunnels-fill { + line-color: @trunk-tunnel-fill; + } + .bridges-fill { + line-width: @trunk-width-z12 - 2 * @bridge-casing-width-z12; + [zoom >= 13] { line-width: @trunk-width-z13 - 2 * @bridge-casing-width-z13; } + [zoom >= 15] { line-width: @trunk-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @trunk-width-z17 - 2 * @bridge-casing-width-z17; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_primary'] { + [zoom >= 12] { + line-width: @primary-width-z12 - 2 * @casing-width-z12; + [zoom >= 13] { line-width: @primary-width-z13 - 2 * @casing-width-z13; } + [zoom >= 15] { line-width: @primary-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @primary-width-z17 - 2 * @casing-width-z17; } + .roads-fill, .bridges-fill { + line-color: @primary-fill; + } + .tunnels-fill { + line-color: @primary-tunnel-fill; + } + .bridges-fill { + line-width: @primary-width-z12 - 2 * @bridge-casing-width-z12; + [zoom >= 13] { line-width: @primary-width-z13 - 2 * @bridge-casing-width-z13; } + [zoom >= 15] { line-width: @primary-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @primary-width-z17 - 2 * @bridge-casing-width-z17; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_secondary'] { + [zoom >= 12] { + line-width: @secondary-width-z12 - 2 * @casing-width-z12; + [zoom >= 13] { line-width: @secondary-width-z13 - 2 * @casing-width-z13; } + [zoom >= 15] { line-width: @secondary-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @secondary-width-z17 - 2 * @casing-width-z17; } + .roads-fill, .bridges-fill { + line-color: @secondary-fill; + } + .tunnels-fill { + line-color: @secondary-tunnel-fill; + } + .bridges-fill { + line-width: @secondary-width-z12 - 2 * @bridge-casing-width-z12; + [zoom >= 13] { line-width: @secondary-width-z13 - 2 * @bridge-casing-width-z13; } + [zoom >= 15] { line-width: @secondary-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @secondary-width-z17 - 2 * @bridge-casing-width-z17; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_tertiary'] { + [zoom >= 13] { + line-width: @tertiary-width-z13 - 2 * @casing-width-z13; + [zoom >= 14] { line-width: @tertiary-width-z14 - 2 * @casing-width-z14; } + [zoom >= 15] { line-width: @tertiary-width-z15 - 2 * @casing-width-z15; } + [zoom >= 17] { line-width: @tertiary-width-z17 - 2 * @casing-width-z17; } + .roads-fill, .bridges-fill { + line-color: @tertiary-fill; + } + .tunnels-fill { + line-color: @tertiary-tunnel-fill; + } + .bridges-fill { + line-width: @tertiary-width-z13 - 2 * @bridge-casing-width-z13; + [zoom >= 14] { line-width: @tertiary-width-z14 - 2 * @bridge-casing-width-z14; } + [zoom >= 15] { line-width: @tertiary-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 17] { line-width: @tertiary-width-z17 - 2 * @bridge-casing-width-z17; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_residential'], + [feature = 'highway_unclassified'] { + [zoom >= 13] { + line-width: @residential-width-z13 - 2 * @residential-casing-width-z13; + [zoom >= 14] { line-width: @residential-width-z14 - 2 * @casing-width-z14; } + [zoom >= 15] { line-width: @residential-width-z15 - 2 * @casing-width-z15; } + [zoom >= 16] { line-width: @residential-width-z16 - 2 * @casing-width-z16; } + [zoom >= 17] { line-width: @residential-width-z17 - 2 * @casing-width-z17; } + .roads-fill, .bridges-fill { + line-color: @residential-fill; + } + .tunnels-fill { + line-color: @residential-tunnel-fill; + } + .bridges-fill { + line-width: @residential-width-z13 - 2 * @bridge-casing-width-z13; + [zoom >= 14] { line-width: @residential-width-z14 - 2 * @bridge-casing-width-z14; } + [zoom >= 15] { line-width: @residential-width-z15 - 2 * @bridge-casing-width-z15; } + [zoom >= 16] { line-width: @residential-width-z16 - 2 * @bridge-casing-width-z16; } + [zoom >= 17] { line-width: @residential-width-z17 - 2 * @bridge-casing-width-z17; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_tertiary'][zoom >= 10][zoom < 13], + [feature = 'highway_residential'][zoom >= 10][zoom < 13], + [feature = 'highway_unclassified'][zoom >= 10][zoom < 13], + [feature = 'highway_road'][zoom >= 10][zoom < 13], + [feature = 'highway_living_street'][zoom >= 12][zoom < 13] { + line-width: 1; + line-color: @residential-casing; + } + + [feature = 'highway_road'] { + [zoom >= 13] { + .roads-fill, .bridges-fill { + line-color: @road-fill; + } + .tunnels-fill { + line-color: @residential-tunnel-fill; + } + .roads-fill { + line-width: 2; + [zoom >= 14] { line-width: 3; } + [zoom >= 15] { line-width: 6.5; } + [zoom >= 16] { line-width: 9.4; } + [zoom >= 17] { line-width: 13; } + } + .bridges-fill { + line-width: 3.5; + [zoom >= 14] { line-width: 7.5; } + [zoom >= 15] { line-width: 9.5; } + [zoom >= 17] { line-width: 14; } + } + .tunnels-fill { + line-width: 2; + [zoom >= 14] { line-width: 3.5; } + [zoom >= 15] { line-width: 9.5; } + [zoom >= 17] { line-width: 14; } + } + line-cap: round; + line-join: round; + } + } + + [feature = 'highway_living_street'] { + [zoom >= 13] { + line-width: 1.5; + line-color: @living-street-fill; + line-join: round; + line-cap: round; + [zoom >= 14] { line-width: 3; } + [zoom >= 15] { line-width: 4.7; } + [zoom >= 16] { line-width: 7.4; } + [zoom >= 17] { line-width: 13; } + } + .tunnels-fill { + line-color: @living-street-tunnel-fill; + } + } + + [feature = 'highway_service'] { + [zoom >= 13][service = 'INT-normal'] { + line-width: 1; + line-color: @residential-casing; + } + [zoom >= 14][service = 'INT-normal'], + [zoom >= 16][service = 'INT-minor'] { + line-color: @service-fill; + [service = 'INT-normal'] { + line-width: @service-width-z14 - 2 * @casing-width-z14; + [zoom >= 16] { line-width: @service-width-z16 - 2 * @casing-width-z16; } + [zoom >= 17] { line-width: @service-width-z17 - 2 * @casing-width-z17; } + } + [service = 'INT-minor'] { + line-width: @minor-service-width-z16 - 2 * @casing-width-z16; + } + line-join: round; + line-cap: round; + .tunnels-fill { + line-color: darken(white, 5%); + } + .bridges-fill { + [service = 'INT-normal'] { + line-width: @service-width-z14 - 2 * @bridge-casing-width-z14; + [zoom >= 16] { line-width: @service-width-z16 - 2 * @bridge-casing-width-z16; } + [zoom >= 17] { line-width: @service-width-z17 - 2 * @bridge-casing-width-z17; } + } + [service = 'INT-minor'] { + line-width: @minor-service-width-z16 - 2 * @bridge-casing-width-z16; + } + } + } + } + + [feature = 'highway_pedestrian'] { + [zoom >= 13] { + line-color: @pedestrian-fill; + line-width: 1.5; + [zoom >= 14] { line-width: 3; } + [zoom >= 15] { line-width: 5.5; } + [zoom >= 16] { line-width: 8; } + line-join: round; + line-cap: round; + } + } + + [feature = 'highway_raceway'] { + [zoom >= 12] { + line-color: pink; + line-width: 1.2; + line-join: round; + line-cap: round; + } + [zoom >= 13] { line-width: 4; } + [zoom >= 15] { line-width: 7; } + } + + [feature = 'highway_platform'] { + [zoom >= 16] { + line-join: round; + line-width: 6; + line-color: grey; + line-cap: round; + b/line-width: 4; + b/line-color: #bbbbbb; + b/line-cap: round; + b/line-join: round; + } + } + + [feature = 'highway_steps'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-width: @steps-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [zoom >= 15] { tunnelcasing/line-width: @steps-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + } + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-color: @steps-casing; + background/line-cap: round; + background/line-join: round; + background/line-width: @steps-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { background/line-width: @steps-width-z15 + 2 * @paths-background-width; } + .roads-fill { background/line-opacity: 0.4; } + } + line/line-color: @steps-fill; + line/line-dasharray: 2,1; + [zoom >= 15] { line/line-width: @steps-width-z15; } + line/line-width: @steps-width-z13; + [zoom >= 15] { line/line-width: @steps-width-z15; } + } + } + + [feature = 'highway_bridleway'], + [feature = 'highway_path'][horse = 'designated'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-width: @bridleway-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [zoom >= 15] { tunnelcasing/line-width: @bridleway-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + } + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-color: @bridleway-casing; + background/line-cap: round; + background/line-join: round; + background/line-width: @bridleway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { background/line-width: @bridleway-width-z15 + 2 * @paths-background-width; } + .roads-fill { background/line-opacity: 0.4; } + } + line/line-color: @bridleway-fill; + line/line-dasharray: 4,2; + line/line-width: @bridleway-width-z13; + [zoom >= 15] { line/line-width: @bridleway-width-z15; } + .tunnels-fill { + line/line-join: round; + line/line-cap: round; + } + } + } + + [feature = 'highway_footway'], + [feature = 'highway_path'][foot = 'designated'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-width: @footway-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [zoom >= 15] { tunnelcasing/line-width: @footway-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + } + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-color: @footway-casing; + background/line-cap: round; + background/line-join: round; + background/line-width: @footway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { background/line-width: @footway-width-z15 + 2 * @paths-background-width; } + .roads-fill { background/line-opacity: 0.4; } + } + line/line-color: @footway-fill; + line/line-dasharray: 1,3; + line/line-join: round; + line/line-cap: round; + line/line-width: @footway-width-z13; + [zoom >= 15] { line/line-width: @footway-width-z15; } + } + } + + [feature = 'highway_cycleway'], + [feature = 'highway_path'][bicycle = 'designated'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-width: @cycleway-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [zoom >= 15] { tunnelcasing/line-width: @cycleway-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + } + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-color: @cycleway-casing; + background/line-cap: round; + background/line-join: round; + background/line-width: @cycleway-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { background/line-width: @cycleway-width-z15 + 2 * @paths-background-width; } + .roads-fill { background/line-opacity: 0.4; } + } + line/line-color: @cycleway-fill; + line/line-dasharray: 1,3; + line/line-join: round; + line/line-cap: round; + line/line-width: @cycleway-width-z13; + [zoom >= 15] { line/line-width: @cycleway-width-z15; } + } + } + + /* + * The above defininitions should override this when needed + * given the specitivity precedence. + */ + [feature = 'highway_path'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-width: @path-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [zoom >= 15] { tunnelcasing/line-width: @path-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); } + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + } + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-color: @path-casing; + background/line-cap: round; + background/line-join: round; + background/line-width: @path-width-z13 + 2 * @paths-background-width; + [zoom >= 15] { background/line-width: @path-width-z15 + 2 * @paths-background-width; } + .roads-fill { background/line-opacity: 0.4; } + } + line/line-color: @path-fill; + line/line-dasharray: 6,3; + line/line-join: round; + line/line-cap: round; + line/line-width: @path-width-z13; + [zoom >= 15] { line/line-width: @path-width-z15; } + } + } + + [feature = 'highway_track'] { + [zoom >= 13][access != 'no'], + [zoom >= 15] { + .tunnels-fill { + tunnelcasing/line-color: @tunnel-casing; + tunnelcasing/line-dasharray: 4,2; + tunnelcasing/line-width: @track-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [tracktype = 'grade1'] { + tunnelcasing/line-width: @track-grade1-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + } + [tracktype = 'grade2'] { + tunnelcasing/line-width: @track-grade2-width-z13 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + } + [zoom >= 15]{ + tunnelcasing/line-width: @track-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + [tracktype = 'grade1'] { + tunnelcasing/line-width: @track-grade1-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + } + [tracktype = 'grade2'] { + tunnelcasing/line-width: @track-grade2-width-z15 + 2 * (@paths-background-width + @paths-tunnel-casing-width); + } + } + } + + /* The white casing that you mainly see against forests and other dark features */ + .roads-fill[zoom >= 15], + .tunnels-fill[zoom >= 13] { + background/line-opacity: 0.4; + background/line-color: @track-casing; + background/line-join: round; + background/line-cap: round; + background/line-width: @track-width-z13 + 2 * @paths-background-width; + /* With the heavier dasharrays on grade1 and grade2 it helps to make the casing a bit larger */ + [tracktype = 'grade1'] { + background/line-width: @track-grade1-width-z13 + 2 * @paths-background-width; + } + [tracktype = 'grade2'] { + background/line-width: @track-grade2-width-z13 + 2 * @paths-background-width; + } + + [zoom >= 15] { + background/line-width: @track-width-z15 + 2 * @paths-background-width; + [tracktype = 'grade1'] { + background/line-width: @track-grade1-width-z15 + 2 * @paths-background-width; + } + [tracktype = 'grade2'] { + background/line-width: @track-grade2-width-z15 + 2 * @paths-background-width; + } + } + } + + /* Set the properties of the brown inside */ + line/line-color: @track-fill; + line/line-dasharray: 5,4,2,4; + line/line-cap: round; + line/line-join: round; + line/line-opacity: 0.8; + line/line-clip:false; + + line/line-width: @track-width-z13; + + [tracktype = 'grade1'] { + line/line-dasharray: 100,0; + } + [tracktype = 'grade2'] { + line/line-dasharray: 8.8,3.2; + } + [tracktype = 'grade3'] { + line/line-dasharray: 5.6,4.0; + } + [tracktype = 'grade4'] { + line/line-dasharray: 3.2,4.8; + } + [tracktype = 'grade5'] { + line/line-dasharray: 1.6,6.4; + } + + [zoom >= 15] { + line/line-width: @track-width-z15; + [tracktype = 'grade1'] { + line/line-dasharray: 100,0; + } + [tracktype = 'grade2'] { + line/line-dasharray: 11,4; + } + [tracktype = 'grade3'] { + line/line-dasharray: 7,5; + } + [tracktype = 'grade4'] { + line/line-dasharray: 4,6; + } + [tracktype = 'grade5'] { + line/line-dasharray: 2,8; + } + } + } + } + + [feature = 'railway_rail'], + [feature = 'railway_INT-spur-siding-yard'] { + [zoom >= 13] { + .roads-fill, .bridges-fill { + dark/line-color: #999999; + [feature = 'railway_rail'] { dark/line-width: 3; } + [feature = 'railway_INT-spur-siding-yard'] { dark/line-width: 2; } + [feature = 'railway_rail'] { dark/line-join: round; } + [feature = 'railway_INT-spur-siding-yard'] .bridges-fill { dark/line-join: round; } + light/line-color: white; + [feature = 'railway_rail'] { light/line-width: 1; } + [feature = 'railway_INT-spur-siding-yard'] { light/line-width: 0.8; } + [feature = 'railway_rail'] { light/line-dasharray: 8,12; } + [feature = 'railway_INT-spur-siding-yard'] { light/line-dasharray: 0,8,11,1; } + light/line-join: round; + [feature = 'railway_rail'][zoom >= 14] { light/line-dasharray: 0,11,8,1; } + } + .tunnels-fill { + a/line-width: 3; + b/line-width: 3; + c/line-width: 3; + d/line-width: 3; + e/line-width: 3; + f/line-width: 3; + g/line-width: 3; + a/line-color: #ffffff; + b/line-color: #fdfdfd; + c/line-color: #ececec; + d/line-color: #cacaca; + e/line-color: #afafaf; + f/line-color: #a1a1a1; + g/line-color: #9b9b9b; + a/line-dasharray: 1,9; + b/line-dasharray: 0,1,1,8; + c/line-dasharray: 0,2,1,7; + d/line-dasharray: 0,3,1,6; + e/line-dasharray: 0,4,1,5; + f/line-dasharray: 0,5,1,4; + g/line-dasharray: 0,6,1,3; + a/line-join: round; + b/line-join: round; + c/line-join: round; + d/line-join: round; + e/line-join: round; + f/line-join: round; + g/line-join: round; + [feature = 'railway_INT-spur-siding-yard'] { + a/line-width: 2; + b/line-width: 2; + c/line-width: 2; + d/line-width: 2; + e/line-width: 2; + f/line-width: 2; + g/line-width: 2; + } + } + } + } + + [feature = 'railway_light_rail'], + [feature = 'railway_funicular'], + [feature = 'railway_narrow_gauge'] { + [zoom >= 13] { + line-width: 2; + line-color: #666; + .tunnels-fill { + line-dasharray: 5,3; + } + } + } + + [feature = 'railway_miniature'] { + [zoom >= 15] { + line/line-width: 1.2; + line/line-color: #999; + dashes/line-width: 3; + dashes/line-color: #999; + dashes/line-dasharray: 1,10; + } + } + + [feature = 'railway_tram'] { + [zoom >= 13] { + line-color: #444; + line-width: 1; + [zoom >= 15] { + line-width: 2; + } + .tunnels-fill { + line-dasharray: 5,3; + } + } + } + + [feature = 'railway_subway'] { + [zoom >= 12] { + line-width: 2; + line-color: #999; + .tunnels-fill { + line-dasharray: 5,3; + } + } + .bridges-fill { + [zoom >= 14] { + line-width: 2; + line-color: #999; + } + } + } + + [feature = 'railway_preserved'] { + [zoom >= 12] { + dark/line-width: 1.5; + dark/line-color: #aaa; + dark/line-join: round; + [zoom >= 13] { + dark/line-width: 3; + dark/line-color: #999999; + light/line-width: 1; + light/line-color: white; + light/line-dasharray: 0,1,8,1; + light/line-join: round; + } + } + } + + [feature = 'railway_INT-preserved-ssy'] { + [zoom >= 12] { + dark/line-width: 1; + dark/line-color: #aaa; + dark/line-join: round; + [zoom >= 13] { + dark/line-width: 2; + dark/line-color: #999999; + light/line-width: 0.8; + light/line-color: white; + light/line-dasharray: 0,1,8,1; + light/line-join: round; + } + } + } + + [feature = 'railway_monorail'] { + [zoom >= 14] { + background/line-width: 4; + background/line-color: #fff; + background/line-opacity: 0.4; + background/line-cap: round; + background/line-join: round; + line/line-width: 3; + line/line-color: #777; + line/line-dasharray: 2,3; + line/line-cap: round; + line/line-join: round; + } + } + + [feature = 'railway_disused'], + [feature = 'railway_construction'] { + [zoom >= 13] { + line-color: grey; + line-width: 2; + line-dasharray: 2,4; + line-join: round; + } + } + + [feature = 'railway_platform'] { + [zoom >= 16] { + line-join: round; + line-width: 6; + line-color: grey; + line-cap: round; + b/line-width: 4; + b/line-color: #bbbbbb; + b/line-cap: round; + b/line-join: round; + } + } + + [feature = 'railway_turntable'] { + [zoom >= 16] { + line-width: 1.5; + line-color: #999; + } + } + + [feature = 'aeroway_runway'] { + [zoom >= 11][zoom < 14] { + line-width: 2; + line-color: @runway-fill; + [zoom >= 12] { line-width: 4; } + [zoom >= 13] { line-width: 7; } + } + [zoom >= 14] { + line-width: 18; + line-color: @runway-fill; + } + } + + [feature = 'aeroway_taxiway'] { + [zoom >= 11][zoom < 14] { + line-width: 1; + line-color: @taxiway-fill; + } + [zoom >= 14] { + line-width: 4; + line-color: @taxiway-fill; + [zoom >= 15] { line-width: 6; } + } + } + } +} + +#turning-circle-casing { + [int_tc_type = 'tertiary'][zoom >= 15] { + marker-fill: @tertiary-casing; + marker-width: (@tertiary-width-z15 - 2 * @casing-width-z15) * 1.8 + 2 * @casing-width-z15; + marker-height: (@tertiary-width-z15 - 2 * @casing-width-z15) * 1.8 + 2 * @casing-width-z15; + [zoom >= 17] { + marker-width: (@tertiary-width-z17 - 2 * @casing-width-z17) * 1.8 + 2 * @casing-width-z17; + marker-height: (@tertiary-width-z17 - 2 * @casing-width-z17) * 1.8 + 2 * @casing-width-z17; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + + [int_tc_type = 'residential'], + [int_tc_type = 'unclassified'] { + [zoom >= 15] { + marker-fill: @residential-casing; + marker-width: (@residential-width-z15 - 2 * @casing-width-z15) * 1.8 + 2 * @casing-width-z15; + marker-height: (@residential-width-z15 - 2 * @casing-width-z15) * 1.8 + 2 * @casing-width-z15; + [zoom >= 16] { + marker-width: (@residential-width-z16 - 2 * @casing-width-z16) * 1.8 + 2 * @casing-width-z16; + marker-height: (@residential-width-z16 - 2 * @casing-width-z16) * 1.8 + 2 * @casing-width-z16; + } + [zoom >= 17] { + marker-width: (@residential-width-z17 - 2 * @casing-width-z17) * 1.8 + 2 * @casing-width-z17; + marker-height: (@residential-width-z17 - 2 * @casing-width-z17) * 1.8 + 2 * @casing-width-z17; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + } + + [int_tc_type = 'living_street'][zoom >= 15] { + marker-fill: @living-street-casing; + marker-width: 14; + marker-height: 14; + [zoom >= 16] { + marker-width: 18; + marker-height: 18; + } + [zoom >= 17] { + marker-width: 24; + marker-height: 24; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + + [int_tc_type = 'service'][zoom >= 16] { + marker-fill: @service-casing; + [int_tc_service = 'INT-normal'] { + marker-width: 14; + marker-height: 14; + [zoom >= 17] { + marker-width: 16; + marker-height: 16; + } + } + [int_tc_service = 'INT-minor'] { + marker-width: 12; + marker-height: 12; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } +} + +#turning-circle-fill { + [int_tc_type = 'tertiary'][zoom >= 15] { + marker-fill: @tertiary-fill; + marker-width: (@tertiary-width-z15 - 2 * @casing-width-z15) * 1.8; + marker-height: (@tertiary-width-z15 - 2 * @casing-width-z15) * 1.8; + [zoom >= 17] { + marker-width: (@tertiary-width-z17 - 2 * @casing-width-z17) * 1.8; + marker-height: (@tertiary-width-z17 - 2 * @casing-width-z17) * 1.8; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + + [int_tc_type = 'residential'], + [int_tc_type = 'unclassified'] { + [zoom >= 15] { + marker-fill: @residential-fill; + marker-width: (@residential-width-z15 - 2 * @casing-width-z15) * 1.8; + marker-height: (@residential-width-z15 - 2 * @casing-width-z15) * 1.8; + [zoom >= 16] { + marker-width: (@residential-width-z16 - 2 * @casing-width-z16) * 1.8; + marker-height: (@residential-width-z16 - 2 * @casing-width-z16) * 1.8; + } + [zoom >= 17] { + marker-width: (@residential-width-z17 - 2 * @casing-width-z17) * 1.8; + marker-height: (@residential-width-z17 - 2 * @casing-width-z17) * 1.8; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + } + + [int_tc_type = 'living_street'][zoom >= 15] { + marker-fill: @living-street-fill; + marker-width: 12; + marker-height: 12; + [zoom >= 16] { + marker-width: 16; + marker-height: 16; + } + [zoom >= 17] { + marker-width: 22; + marker-height: 22; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } + + [int_tc_type = 'service'][zoom >= 16] { + marker-fill: @service-fill; + [int_tc_service = 'INT-normal'] { + marker-width: 12; + marker-height: 12; + [zoom >= 17] { + marker-width: 14; + marker-height: 14; + } + } + [int_tc_service = 'INT-minor'] { + marker-width: 10; + marker-height: 10; + } + marker-allow-overlap: true; + marker-ignore-placement: true; + marker-line-width: 0; + } +} + +#highway-area-casing { + [feature = 'highway_residential'], + [feature = 'highway_unclassified'] { + [zoom >= 14] { + line-color: #999; + line-width: 1; + } + } + + [feature = 'highway_pedestrian'], + [feature = 'highway_service'], + [feature = 'highway_footway'], + [feature = 'highway_cycleway'], + [feature = 'highway_path'] { + [zoom >= 14] { + line-color: grey; + line-width: 1; + } + } + + [feature = 'highway_track'][zoom >= 14] { + line-color: @track-fill; + line-width: 2; + } + + [feature = 'highway_platform'], + [feature = 'railway_platform'] { + [zoom >= 16] { + line-color: grey; + line-width: 2; + line-cap: round; + line-join: round; + } + } +} + +#highway-area-fill { + [feature = 'highway_living_street'][zoom >= 14] { + polygon-fill: #ccc; + } + + [feature = 'highway_residential'], + [feature = 'highway_unclassified'], + [feature = 'highway_service'] { + [zoom >= 14] { + polygon-fill: #fff; + } + } + + [feature = 'highway_pedestrian'], + [feature = 'highway_footway'], + [feature = 'highway_cycleway'], + [feature = 'highway_path'] { + [zoom >= 14] { + polygon-fill: #ededed; + } + } + + [feature = 'highway_track'][zoom >= 14] { + polygon-fill: #dfcc66; + } + + [feature = 'highway_platform'], + [feature = 'railway_platform'] { + [zoom >= 16] { + polygon-fill: #bbbbbb; + polygon-gamma: 0.65; + } + } + + [feature = 'aeroway_runway'][zoom >= 11] { + polygon-fill: @runway-fill; + } + + [feature = 'aeroway_taxiway'][zoom >= 13] { + polygon-fill: @taxiway-fill; + } + + [feature = 'aeroway_helipad'][zoom >= 16] { + polygon-fill: @helipad-fill; + } +} + +#junctions { + [highway = 'motorway_junction'] { + [zoom >= 11] { + ref/text-name: "[ref]"; + ref/text-size: 10; + ref/text-fill: #6666ff; + ref/text-min-distance: 2; + ref/text-face-name: @oblique-fonts; + ref/text-halo-radius: 1.5; + [zoom >= 12] { + name/text-name: "[name]"; + name/text-size: 9; + name/text-fill: #6666ff; + name/text-dy: -9; + name/text-face-name: @oblique-fonts; + name/text-halo-radius: 1; + name/text-wrap-character: ";"; + name/text-wrap-width: 2; + name/text-min-distance: 2; + } + [zoom >= 15] { + ref/text-size: 12; + name/text-size: 11; + name/text-dy: -10; + } + } + } + + [junction = 'yes'], + [highway = 'traffic_signals'] { + [zoom >= 14] { + text-name: "[name]"; + text-size: 8; + text-fill: black; + text-face-name: @book-fonts; + text-halo-radius: 1; + text-wrap-width: 30; + text-min-distance: 2; + [zoom >= 14] { + text-size: 9; + } + [zoom >= 15] { + text-size: 10; + } + [zoom >= 17] { + text-size: 11; + /* Offset name on traffic_signals on zoomlevels where they are displayed + in order not to hide the icon */ + [highway = 'traffic_signals'] { + text-dy: 11; + } + } + } + } +} + +.access::fill { + [access = 'destination'] { + [feature = 'highway_secondary'], + [feature = 'highway_tertiary'], + [feature = 'highway_unclassified'], + [feature = 'highway_residential'], + [feature = 'highway_road'], + [feature = 'highway_living_street'] { + [zoom >= 15] { + access/line-width: 6; + access/line-color: @destination-marking; + access/line-dasharray: 6,8; + access/line-cap: round; + access/line-join: round; + access/line-opacity: 0.5; + } + } + [feature = 'highway_service'][service = 'INT-normal'][zoom >= 15], + [feature = 'highway_service'][zoom >= 16] { + access/line-width: 3; + access/line-color: @destination-marking; + access/line-dasharray: 6,8; + access/line-cap: round; + access/line-join: round; + access/line-opacity: 0.5; + [zoom >= 16] { access/line-width: 6; } + } + } + [access = 'no'] { + [feature = 'highway_motorway'], + [feature = 'highway_trunk'], + [feature = 'highway_primary'], + [feature = 'highway_secondary'], + [feature = 'highway_tertiary'], + [feature = 'highway_unclassified'], + [feature = 'highway_residential'], + [feature = 'highway_road'], + [feature = 'highway_living_street'], + [feature = 'highway_track'], + [feature = 'highway_path'], + [feature = 'highway_footway'], + [feature = 'highway_cycleway'], + [feature = 'highway_bridleway'] { + [zoom >= 15] { + access/line-width: 6; + access/line-color: @private-marking; + access/line-dasharray: 6,8; + access/line-opacity: 0.5; + access/line-join: round; + access/line-cap: round; + } + } + [feature = 'highway_service'][service = 'INT-normal'][zoom >= 15], + [feature = 'highway_service'][zoom >= 16] { + access/line-width: 3; + access/line-color: @private-marking; + access/line-dasharray: 6,8; + access/line-opacity: 0.5; + access/line-join: round; + access/line-cap: round; + [zoom >= 16] { access/line-width: 6; } + } + } +} + +#roads-low-zoom { + [feature = 'highway_motorway'] { + [zoom >= 5][zoom < 12] { + line-width: 0.5; + line-color: @motorway-fill; + [zoom >= 7] { line-width: 1; } + [zoom >= 9] { line-width: 1.4; } + [zoom >= 10] { line-width: 2; } + [zoom >= 11] { line-width: 2.5; } + } + } + + [feature = 'highway_trunk'] { + [zoom >= 5][zoom < 12] { + line-width: 0.4; + line-color: @trunk-fill; + [zoom >= 7] { + line-width: 1; + line-color: @trunk-fill-alternative; + } + [zoom >= 9] { line-width: 2; } + [zoom >= 11] { line-width: 2.5; } + } + } + + [feature = 'highway_primary'] { + [zoom >= 7][zoom < 12] { + line-width: 0.5; + line-color: @primary-fill; + [zoom >= 9] { line-width: 1.2; } + [zoom >= 10] { line-width: 2; } + [zoom >= 11] { line-width: 2.5; } + } + } + + [feature = 'highway_secondary'] { + [zoom >= 9][zoom < 12] { + line-width: 1; + line-color: @secondary-fill; + [zoom >= 11] { line-width: 2; } + } + } + + [feature = 'railway_rail'] { + [zoom >= 6][zoom < 13] { + line-width: 0.6; + line-color: #aaa; + [zoom >= 9] { line-width: 1; } + [zoom >= 10] { line-width: 2; } + .tunnels-casing { + line-dasharray: 5,2; + } + } + } + + [feature = 'railway_INT-spur-siding-yard'] { + [zoom >= 11] { + line-width: 1; + line-color: #aaa; + line-join: round; + } + } + + [feature = 'railway_tram'], + [feature = 'railway_light_rail'], + [feature = 'railway_funicular'], + [feature = 'railway_narrow_gauge'] { + [zoom >= 8][zoom < 13] { + line-width: 1; + line-color: #ccc; + [zoom >= 10] { line-color: #aaa } + } + } +} + +#guideways { + [zoom >= 13] { + line-width: 3; + line-color: #6666ff; + line-join: round; + b/line-width: 1; + b/line-color: white; + b/line-dasharray: 8,12; + b/line-join: round; + } + [zoom >= 14] { + b/line-dasharray: 0,11,8,1; + } +} + +#roads-text-ref-low-zoom { + [highway = 'motorway'][zoom >= 10][zoom < 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/motorway_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'trunk'][zoom >= 11][zoom < 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/trunk_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'primary'][zoom >= 11][zoom < 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/primary_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'secondary'][zoom >= 12][zoom < 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/secondary_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } +} + +#roads-text-ref { + [highway = 'motorway'][zoom >= 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/motorway_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'trunk'][zoom >= 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/trunk_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'primary'][zoom >= 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/primary_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'secondary'][zoom >= 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/secondary_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'tertiary'][zoom >= 13] { + shield-name: "[refs]"; + shield-size: 10; + shield-fill: #fff; + shield-placement: line; + shield-file: url("symbols/shields/tertiary_[width]x[height].svg"); + shield-spacing: 750; + shield-min-distance: 30; + shield-face-name: @bold-fonts; + shield-clip: false; + } + + [highway = 'unclassified'], + [highway = 'residential'] { + [zoom >= 15] { + text-name: "[refs]"; + text-size: 10; + text-fill: #000; + text-face-name: @bold-fonts; + text-min-distance: 18; + text-halo-radius: 1; + text-spacing: 750; + text-clip: false; + } + } + + [highway = 'runway'], + [highway = 'taxiway'] { + [zoom >= 15] { + text-name: "[refs]"; + text-size: 10; + text-fill: #333; + text-spacing: 750; + text-clip: false; + text-placement: line; + text-min-distance: 18; + text-face-name: @book-fonts; + text-halo-radius: 1; + } + } +} + +#roads-text-name { + [highway = 'motorway'], + [highway = 'trunk'], + [highway = 'primary'] { + [zoom >= 13] { + text-name: "[name]"; + text-size: 8; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-face-name: @book-fonts; + text-halo-radius: 0; + } + [zoom >= 14] { + text-size: 9; + } + [zoom >= 15] { + text-size: 10; + } + [zoom >= 17] { + text-size: 11; + } + } + [highway = 'secondary'] { + [zoom >= 13] { + text-name: "[name]"; + text-size: 8; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-face-name: @book-fonts; + text-halo-radius: 0; + } + [zoom >= 14] { + text-size: 9; + } + [zoom >= 15] { + text-size: 10; + } + [zoom >= 17] { + text-size: 11; + } + } + [highway = 'tertiary'], + [highway = 'tertiary_link'] { + [zoom >= 14] { + text-name: "[name]"; + text-size: 9; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-face-name: @book-fonts; + text-halo-radius: 0; + } + [zoom >= 17] { + text-size: 11; + } + } + [highway = 'proposed'], + [highway = 'construction'] { + [zoom >= 13] { + text-name: "[name]"; + text-size: 9; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-halo-radius: 1; + text-face-name: @book-fonts; + } + [zoom >= 17] { + text-size: 11; + } + } + [highway = 'residential'], + [highway = 'unclassified'], + [highway = 'road'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 8; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-halo-radius: 0; + text-face-name: @book-fonts; + } + [zoom >= 16] { + text-size: 9; + } + [zoom >= 17] { + text-size: 11; + text-spacing: 400; + } + } + + [highway = 'raceway'], + [highway = 'service'] { + [zoom >= 16] { + text-name: "[name]"; + text-size: 9; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-halo-radius: 0; + text-face-name: @book-fonts; + } + [zoom >= 17] { + text-size: 11; + } + } + + [highway = 'living_street'], + [highway = 'pedestrian'] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 8; + text-fill: black; + text-spacing: 300; + text-clip: false; + text-placement: line; + text-halo-radius: 0; + text-face-name: @book-fonts; + } + [zoom >= 16] { + text-size: 9; + } + [zoom >= 17] { + text-size: 11; + } + } +} + +#roads-area-text-name { + [way_pixels > 3000] { + [zoom >= 15] { + text-name: "[name]"; + text-size: 8; + text-face-name: @book-fonts; + text-placement: interior; + text-wrap-width: 30; + } + [zoom >= 16] { + text-size: 9; + } + [zoom >= 17] { + text-size: 11; + } + } +} + +#paths-text-name { + [highway = 'track'] { + [zoom >= 15] { + text-name: "[name]"; + text-fill: #222; + text-size: 8; + text-halo-radius: 1; + text-halo-fill: rgba(255,255,255,0.8); + text-spacing: 300; + text-clip: false; + text-placement: line; + text-face-name: @book-fonts; + text-dy: 5; + } + [zoom >= 16] { + text-size: 9; + text-dy: 7; + } + [zoom >= 17] { + text-size: 11; + text-dy: 9; + } + } + + [highway = 'bridleway'], + [highway = 'footway'], + [highway = 'cycleway'], + [highway = 'path'], + [highway = 'steps'] { + [zoom >= 16] { + text-name: "[name]"; + text-fill: #222; + text-size: 9; + text-halo-radius: 1; + text-halo-fill: rgba(255,255,255,0.8); + text-spacing: 200; + text-clip: false; + text-placement: line; + text-face-name: @book-fonts; + text-dy: 7; + } + [zoom >= 17] { + text-size: 11; + text-dy: 9; + } + } +} + +.directions::directions { + [zoom >= 16] { + [oneway = 'yes'] { + dira/line-width: 1; + dira/line-dasharray: 0,12,10,152; + dira/line-color: #6c70d5; + dira/line-join: bevel; + dira/line-clip: false; + dirb/line-width: 2; + dirb/line-dasharray: 0,12,9,153; + dirb/line-color: #6c70d5; + dirb/line-join: bevel; + dirb/line-clip: false; + dirc/line-width: 3; + dirc/line-dasharray: 0,18,2,154; + dirc/line-color: #6c70d5; + dirc/line-join: bevel; + dirc/line-clip: false; + dird/line-width: 4; + dird/line-dasharray: 0,18,1,155; + dird/line-color: #6c70d5; + dird/line-join: bevel; + dird/line-clip: false; + } + [oneway = '-1'] { + dira/line-width: 1; + dira/line-dasharray: 0,12,10,152; + dira/line-color: #6c70d5; + dira/line-join: bevel; + dira/line-clip: false; + dirb/line-width: 2; + dirb/line-dasharray: 0,13,9,152; + dirb/line-color: #6c70d5; + dirb/line-join: bevel; + dirb/line-clip: false; + dirc/line-width: 3; + dirc/line-dasharray: 0,14,2,158; + dirc/line-color: #6c70d5; + dirc/line-join: bevel; + dirc/line-clip: false; + dird/line-width: 4; + dird/line-dasharray: 0,15,1,158; + dird/line-color: #6c70d5; + dird/line-join: bevel; + dird/line-clip: false; + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_shield openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_shield --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_shield 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_shield 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,34 @@ +#!/bin/bash -e + +# A simple script to generate a SVG road shield. +# Copyright 2014 Paul Norman +# Released under the Creative Commons CC0 license + +# Syntax +# ./create_shield colour width height xoffset yoffset + +# Fixed values +RADIUS=9 +OUTERLINE=1.5 +WHITELINE=1.5 + +COLOUR=$1 +WIDTH=$2 +HEIGHT=$3 +XOFFSET=$4 +YOFFSET=$5 + + +echo "" + +echo "" + +echo "" + +echo "" +echo "" diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_standard_shields openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_standard_shields --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_standard_shields 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/create_standard_shields 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,49 @@ +#!/bin/bash -e + +# A simple script that generates the standard road shields. +# Run from the same directory as create_shield +# Copyright 2014 Paul Norman +# Released under the Creative Commons CC0 license + +widths=' +1:18 +2:25.25 +3:32.5 +4:39 +5:46 +6:52.5 +7:59.25 +8:66 +9:70.5 +10:75.75 +11:80.75' + +colours='motorway:#7788a1 +trunk:#87ab87 +primary:#bb7b7f +secondary:#c6ad84 +tertiary:#c4c68f' + + +xoffset=1.25 +yoffset=1.75 + +heights=' +1:18 +2:30 +3:44 +4:54' + +for h in $heights; do + for w in $widths; do + xchars=$(echo $w | awk -F ":" '{print $1}') + xpixels=$(echo $w | awk -F ":" '{print $2}') + ychars=$(echo $h | awk -F ":" '{print $1}') + ypixels=$(echo $h | awk -F ":" '{print $2}') + for shield in $colours; do + class=$(echo $shield | awk -F ":" '{print $1}') + colour=$(echo $shield | awk -F ":" '{print $2}') + ./create_shield $colour $xpixels $ypixels $xoffset $yoffset > "${class}_${xchars}x${ychars}.svg" + done; + done; +done; diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/shop_values.rb openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/shop_values.rb --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/shop_values.rb 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/scripts/shop_values.rb 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,41 @@ +#!/usr/bin/ruby +require 'net/http' +require 'json' +require 'pp' + +MIN_COUNT = 100 +EXCEPTIONS = [ + "no", + "vacant", + "empty", + "disused", + "unknown", + "closed", + "fixme", + "FIXME", + "FixMe", + "other", + "*" +] + + +url = URI.parse('http://taginfo.openstreetmap.org/api/4/key/values?key=shop&sortname=count&sortorder=desc') +req = Net::HTTP::Get.new(url.to_s) +res = Net::HTTP.start(url.host, url.port) {|http| + http.request(req) +} + +data = JSON.parse(res.body)["data"] + + + +# Get an array of values that only includes values with more than MIN_COUNT occurrences +counted = data.select { |h| h["count"] > MIN_COUNT }.map { |h| h["value"] } +# Filter out empty strings +no_empty = counted.reject { |h| h.strip.empty? } +# Filter out exceptions in EXCEPTIONS +filtered = no_empty - EXCEPTIONS + +# Output in SQL style +puts "(" + filtered.map{ |val| "'#{val}'" }.sort.join(", ") + ")" + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/shapefiles.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/shapefiles.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/shapefiles.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/shapefiles.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,37 @@ +#necountries { + [zoom >= 1][zoom < 4] { + line-width: 0.5; + line-color: grey; + } +} + +#nepopulated { + [zoom >= 3][zoom < 5] { + [SCALERANK = 0], + [SCALERANK = 1] { + text-name: "[NAME]"; + text-size: 8; + text-fill: grey; + text-face-name: @book-fonts; + text-halo-radius: 1; + } + } +} + +#world { + [zoom >= 0][zoom < 10] { + polygon-fill: @land-color; + } +} + +#coast-poly { + [zoom >= 10] { + polygon-fill: @land-color; + } +} + +#builtup { + [zoom >= 8][zoom < 10] { + polygon-fill: #ddd; + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/stations.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/stations.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/stations.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/stations.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,54 @@ +.stations { + [railway = 'subway_entrance'][zoom >= 18] { + point-file: url('symbols/walking.n.12.png'); + point-placement: interior; + } + + [railway = 'station'][zoom >= 12] { + point-file: url('symbols/halt.png'); + point-placement: interior; + [zoom >= 13] { + point-file: url('symbols/station_small.png'); + } + [zoom >= 14] { + text-name: "[name]"; + text-face-name: @bold-fonts; + text-size: 9; + text-fill: #66f; + text-dy: -8; + text-halo-radius: 1; + text-wrap-width: 0; + text-placement: interior; + } + [zoom >= 15] { + point-file: url('symbols/station.png'); + text-size: 11; + text-dy: -10; + } + } + + [railway = 'halt'], + [railway = 'tram_stop'], + [aerialway = 'station']::aerialway { + [zoom >= 13] { + point-file: url('symbols/halt.png'); + } + [zoom >= 15] { + point-file: url('symbols/station_small.png'); + } + [zoom >= 14] { + text-name: "[name]"; + text-face-name: @book-fonts; + text-size: 8; + text-fill: #66f; + text-dy: -8; + text-halo-radius: 1; + text-wrap-width: 0; + text-placement: interior; + [zoom >= 15] { + text-size: 10; + text-dy: -10; + } + } + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/style.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/style.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/style.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/style.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,19 @@ +Map { + background-color: @water-color; +} + +@book-fonts: "DejaVu Sans Book", "Arundina Sans Regular", "Padauk Regular", "Khmer OS Metal Chrieng Regular", + "Mukti Narrow Regular", "gargi Medium", "TSCu_Paranar Regular", "Tibetan Machine Uni Regular", "Mallige Normal", + "Droid Sans Fallback Regular", "Unifont Medium", "unifont Medium"; +@bold-fonts: "DejaVu Sans Bold", "Arundina Sans Bold", "Padauk Bold", "Mukti Narrow Bold", "TSCu_Paranar Bold", "Mallige Bold", + "DejaVu Sans Book", "Arundina Sans Regular", "Padauk Regular", "Khmer OS Metal Chrieng Regular", + "Mukti Narrow Regular", "gargi Medium", "TSCu_Paranar Regular", "Tibetan Machine Uni Regular", "Mallige Normal", + "Droid Sans Fallback Regular", "Unifont Medium", "unifont Medium"; + +@oblique-fonts: "DejaVu Sans Oblique", "Arundina Sans Italic", "TSCu_Paranar Italic", "Mallige NormalItalic", + "DejaVu Sans Book", "Arundina Sans Regular", "Padauk Regular", "Khmer OS Metal Chrieng Regular", + "Mukti Narrow Regular", "gargi Medium", "TSCu_Paranar Regular", "Tibetan Machine Uni Regular", "Mallige Normal", + "Droid Sans Fallback Regular", "Unifont Medium", "unifont Medium"; + +@water-color: #b5d0d0; +@land-color: #f2efe9; Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/aerodrome.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/aerodrome.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/allotments.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/allotments.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/alpinehut.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/alpinehut.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/amenity_court.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/amenity_court.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/amenity_prison.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/amenity_prison.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/atm2.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/atm2.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bank2.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bank2.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bar.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bar.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/beach.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/beach.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/biergarten.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/biergarten.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bollard.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bollard.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/buddhist.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/buddhist.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_station.n.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_station.n.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_stop.p.12.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_stop.p.12.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_stop_small.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/bus_stop_small.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cable_car.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cable_car.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cafe.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cafe.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/camping.n.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/camping.n.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/caravan_park.p.24.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/caravan_park.p.24.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/car_share.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/car_share.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cemetery_jewish.18.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cemetery_jewish.18.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/chair_lift.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/chair_lift.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/chalet.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/chalet.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/christian3.p.14.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/christian3.p.14.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cinema.p.24.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cinema.p.24.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cliff2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cliff2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cliff.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/cliff.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/communications.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/communications.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/danger.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/danger.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/department_store.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/department_store.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/embassy.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/embassy.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/fast_food.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/fast_food.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/firestation.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/firestation.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/florist.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/florist.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/food_drinkingtap.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/food_drinkingtap.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/forest.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/forest.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/fuel.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/fuel.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/gate2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/gate2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/glacier2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/glacier2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/glacier.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/glacier.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/grave_yard_generic.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/grave_yard_generic.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/grave_yard.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/grave_yard.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/guest_house.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/guest_house.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/halt.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/halt.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/helipad.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/helipad.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hindu.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hindu.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hospital.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hospital.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hostel.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hostel.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hotel2.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/hotel2.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/information.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/information.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/islamic3.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/islamic3.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/jewish3.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/jewish3.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/level_crossing2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/level_crossing2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/level_crossing.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/level_crossing.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/library.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/library.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/liftgate.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/liftgate.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/lighthouse.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/lighthouse.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/lock_gate.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/lock_gate.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/marsh.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/marsh.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/military_red_hatch.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/military_red_hatch.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/mini_round.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/mini_round.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/motel.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/motel.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/mud.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/mud.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/museum.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/museum.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/orchard.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/orchard.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/parking.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/parking.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/parking.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/parking.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,4 @@ + + + + Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/peak.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/peak.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/pharmacy.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/pharmacy.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/picnic.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/picnic.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/place_of_worship3.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/place_of_worship3.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/playground.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/playground.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/poi_cave.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/poi_cave.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/police.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/police.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/post_box.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/post_box.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/post_office.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/post_office.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_pole.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_pole.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower_3x3.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower_3x3.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower_5x5.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower_5x5.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_tower.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_wind.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/power_wind.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/pub.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/pub.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/quarry2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/quarry2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/recycling.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/recycling.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/rental_bicycle.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/rental_bicycle.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/restaurant.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/restaurant.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/scrub.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/scrub.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shelter2.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shelter2.p.16.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_10x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_11x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_1x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_2x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_3x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_4x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_5x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_6x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_7x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_8x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/motorway_9x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_10x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_11x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_1x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_2x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_3x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_4x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_5x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_6x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_7x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_8x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/primary_9x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_10x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_11x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_1x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_2x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_3x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_4x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_5x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_6x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_7x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_8x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/secondary_9x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_10x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_11x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_1x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_2x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_3x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_4x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_5x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_6x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_7x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_8x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/tertiary_9x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_10x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_11x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_1x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_2x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_3x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_4x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_5x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_6x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_7x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_8x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x1.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x1.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x1.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x1.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x2.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x2.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x2.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x2.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x3.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x3.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x3.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x3.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x4.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x4.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x4.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shields/trunk_9x4.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shinto.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shinto.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_bakery.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_bakery.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_butcher.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_butcher.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_car.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_car.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_car.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_car.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_clothes.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_clothes.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_clothes.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_clothes.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,4 @@ + + + + diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_convenience.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_convenience.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_convenience.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_convenience.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_diy.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_diy.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_hairdresser.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_hairdresser.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shopping_bicycle.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shopping_bicycle.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shopping_car_repair.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shopping_car_repair.p.16.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_supermarket.svg openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_supermarket.svg --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_supermarket.svg 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/shop_supermarket.svg 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/sikh3.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/sikh3.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/sosphone.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/sosphone.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/spring.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/spring.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/station.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/station.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/station_small.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/station_small.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/taoist.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/taoist.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/telephone.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/telephone.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/theatre.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/theatre.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/toilets.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/toilets.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tourist_archaeological2.glow.24.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tourist_archaeological2.glow.24.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tourist_memorial.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tourist_memorial.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tower_water.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tower_water.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/traffic_light.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/traffic_light.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/transport_ford.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/transport_ford.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/transport_slipway.p.20.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/transport_slipway.p.20.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree_row2.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree_row2.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree_row.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/tree_row.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/view_point.p.16.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/view_point.p.16.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/vineyard.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/vineyard.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/volcano.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/volcano.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/walking.n.12.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/walking.n.12.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/windmill.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/windmill.png differ Binary files /tmp/P1KFLwwyZx/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/zoo.png and /tmp/JnEmqi6Ut1/openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/symbols/zoo.png differ diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/.travis.yml openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/.travis.yml --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/.travis.yml 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/.travis.yml 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,22 @@ +language: node_js +cache: apt +node_js: + - "0.10" +before_install: + - sudo apt-get update -qq + - sudo apt-get install -y -q python-demjson +install: + - npm install carto@0.12.1 + - mkdir -p data/world_boundaries + - mkdir -p data/simplified-land-polygons-complete-3857 + - mkdir -p data/ne_110m_admin_0_boundary_lines_land + - mkdir -p data/ne_10m_populated_places + - mkdir -p data/land-polygons-split-3857 + - touch data/world_boundaries/builtup_area.shp + - touch data/simplified-land-polygons-complete-3857/simplified_land_polygons.shp + - touch data/ne_110m_admin_0_boundary_lines_land/ne_110m_admin_0_boundary_lines_land.shp + - touch data/ne_10m_populated_places/ne_10m_populated_places_fixed.shp + - touch data/land-polygons-split-3857/land_polygons.shp +script: + - jsonlint project.mml + - ./node_modules/carto/bin/carto project.mml | xmllint - | wc -l diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water-features.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water-features.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water-features.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water-features.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,72 @@ +#dam { + [zoom >= 13] { + line-width: 2; + line-color: #444; + line-join: round; + line-cap: round; + } + [zoom >= 15] { + text-name: "[name]"; + text-halo-radius: 1; + text-fill: #222; + text-size: 8; + text-face-name: @book-fonts; + } +} + +#marinas-area { + [zoom >= 14] { + a/line-width: 1; + a/line-offset: -0.5; + a/line-color: blue; + a/line-opacity: 0.1; + a/line-join: round; + a/line-cap: round; + b/line-width: 3; + b/line-offset: -1.5; + b/line-color: blue; + b/line-opacity: 0.1; + b/line-join: round; + b/line-cap: round; + [zoom >= 17] { + a/line-width: 2; + a/line-offset: -1; + b/line-width: 6; + b/line-offset: -3; + } + } +} + +#piers-area { + [zoom >= 12] { + polygon-fill: @land-color; + } +} + +#piers { + [man_made = 'breakwater'], + [man_made = 'groyne'] { + [zoom >= 12] { + line-width: 1; + line-color: #aaa; + } + [zoom >= 13] { + line-width: 2; + } + [zoom >= 16] { + line-width: 4; + } + } + [man_made = 'pier'][zoom >= 12] { + line-width: 1.5; + line-color: @land-color; + [zoom >= 13] { line-width: 3; } + [zoom >= 16] { line-width: 7; } + } +} + +#locks { + [waterway = 'lock_gate'][zoom >= 17] { + point-file: url('symbols/lock_gate.png'); + } +} diff -Nru openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water.mss openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water.mss --- openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water.mss 1970-01-01 00:00:00.000000000 +0000 +++ openstreetmap-mapnik-carto-stylesheet-data-2.20.1/openstreetmap-carto-verbatim/water.mss 2014-09-15 17:36:45.000000000 +0000 @@ -0,0 +1,278 @@ +@water-text: #6699cc; + +#water-areas { + [natural = 'glacier']::natural { + [zoom >= 6] { + line-dasharray: 4,2; + line-width: 1.5; + line-color: #9cf; + polygon-pattern-file: url('symbols/glacier.png'); + [zoom >= 8] { + polygon-pattern-file: url('symbols/glacier2.png'); + } + } + } + + [waterway = 'dock'], + [waterway = 'canal'] { + [zoom >= 9]::waterway { + polygon-fill: @water-color; + [way_pixels >= 4] { + polygon-gamma: 0.75; + } + [way_pixels >= 64] { + polygon-gamma: 0.6; + } + } + } + + [landuse = 'basin'][zoom >= 7]::landuse { + polygon-fill: @water-color; + [way_pixels >= 4] { + polygon-gamma: 0.75; + } + [way_pixels >= 64] { + polygon-gamma: 0.6; + } + } + + [natural = 'lake']::natural, + [natural = 'water']::natural, + [landuse = 'reservoir']::landuse, + [waterway = 'riverbank']::waterway { + [zoom >= 6] { + polygon-fill: @water-color; + [way_pixels >= 4] { + polygon-gamma: 0.75; + } + [way_pixels >= 64] { + polygon-gamma: 0.6; + } + } + } + + [natural = 'mud'][zoom >= 13]::natural { + polygon-pattern-file: url('symbols/mud.png'); + } +} + +#water-areas-overlay { + [natural = 'marsh'], + [natural = 'wetland'] { + [zoom >= 13] { + polygon-pattern-file: url('symbols/marsh.png'); + } + } +} + +#glaciers-text { + [way_area >= 10000000][zoom >= 10], + [way_area >= 5000000][way_area < 10000000][zoom >= 11], + [way_area < 5000000][zoom >= 12] { + text-name: "[name]"; + text-size: 10; + text-fill: #77f; + text-face-name: @oblique-fonts; + text-halo-radius: 1.5; + text-wrap-width: 20; + } +} + +#water-lines-casing { + [waterway='stream'], + [waterway='ditch'], + [waterway='drain'] { + [int_tunnel = 'no'] { + [zoom >= 13] { + line-width: 1.5; + line-color: white; + [waterway='stream'][zoom >= 15] { + line-width: 2.5; + } + } + } + } +} + +#water-lines-low-zoom { + [waterway = 'river'][zoom >= 8][zoom < 12] { + line-color: @water-color; + line-width: 0.7; + [zoom >= 9] { line-width: 1.2; } + [zoom >= 10] { line-width: 1.6; } + } +} + +.water-lines { + [waterway = 'weir'][zoom >= 15] { + line-color: #aaa; + line-width: 2; + line-join: round; + line-cap: round; + } + + [waterway = 'wadi'][zoom >= 13] { + line-color: @water-color; + line-width: 1; + line-dasharray: 4,4; + line-cap: round; + line-join: round; + [zoom >= 16] { line-width: 2; } + } + + [waterway = 'canal'][zoom >= 12], + [waterway = 'river'][zoom >= 12] { + [bridge = 'yes'] { + [zoom >= 14] { + bridgecasing/line-color: black; + bridgecasing/line-join: round; + bridgecasing/line-width: 6; + [zoom >= 15] { bridgecasing/line-width: 7; } + [zoom >= 17] { bridgecasing/line-width: 11; } + [zoom >= 18] { bridgecasing/line-width: 13; } + } + } + line-color: @water-color; + line-width: 2; + [zoom >= 13] { line-width: 3; } + [zoom >= 14] { line-width: 5; } + [zoom >= 15] { line-width: 6; } + [zoom >= 17] { line-width: 10; } + [zoom >= 18] { line-width: 12; } + line-cap: round; + line-join: round; + [int_tunnel = 'yes'] { + line-dasharray: 4,2; + line-cap: butt; + line-join: miter; + a/line-color: #f3f7f7; + a/line-width: 1; + [zoom >= 14] { a/line-width: 2; } + [zoom >= 15] { a/line-width: 3; } + [zoom >= 17] { a/line-width: 7; } + [zoom >= 18] { a/line-width: 8; } + } + } + + [waterway = 'stream'], + [waterway = 'ditch'], + [waterway = 'drain'] { + [zoom >= 13] { + [bridge = 'yes'] { + [zoom >= 14] { + bridgecasing/line-color: black; + bridgecasing/line-join: round; + bridgecasing/line-width: 3; + [waterway = 'stream'][zoom >= 15] { bridgecasing/line-width: 4; } + bridgeglow/line-color: white; + bridgeglow/line-join: round; + bridgeglow/line-width: 2; + [waterway = 'stream'][zoom >= 15] { bridgeglow/line-width: 3; } + } + } + line-width: 1; + line-color: @water-color; + [waterway = 'stream'][zoom >= 15] { + line-width: 2; + } + [int_tunnel = 'yes'][zoom >= 15] { + line-width: 2.5; + [waterway = 'stream'] { line-width: 3.5; } + line-dasharray: 4,2; + a/line-width: 1; + [waterway = 'stream'] { a/line-width: 2; } + a/line-color: #f3f7f7; + } + } + } + + [waterway = 'derelict_canal'][zoom >= 12] { + line-width: 1.5; + line-color: #b5e4d0; + line-dasharray: 4,4; + line-opacity: 0.5; + line-join: round; + line-cap: round; + [zoom >= 13] { + line-width: 2.5; + line-dasharray: 4,6; + } + [zoom >= 14] { + line-width: 4.5; + line-dasharray: 4,8; + } + } +} + +#water-lines-text { + [waterway = 'river'][zoom >= 13] { + text-name: "[name]"; + text-face-name: @oblique-fonts; + text-placement: line; + text-fill: @water-text; + text-spacing: 400; + text-size: 10; + text-halo-radius: 1; + [zoom >= 14] { text-size: 12; } + [int_tunnel = 'yes'] { text-min-distance: 200; } + } + + [waterway = 'canal'][zoom >= 13][zoom < 14] { + text-name: "[name]"; + text-face-name: @oblique-fonts; + text-halo-radius: 1; + text-size: 10; + text-placement: line; + text-fill: @water-text; + } + + [waterway = 'stream'][zoom >= 15] { + text-name: "[name]"; + text-size: 10; + text-face-name: @oblique-fonts; + text-fill: @water-text; + text-halo-radius: 1; + text-spacing: 600; + text-placement: line; + text-dy: 8; + } + + [waterway = 'drain'], + [waterway = 'ditch'] { + [zoom >= 15] { + text-name: "[name]"; + text-face-name: @oblique-fonts; + text-size: 10; + text-fill: @water-text; + text-spacing: 600; + text-placement: line; + text-halo-radius: 1; + } + } + + [waterway = 'canal'][zoom >= 14] { + text-name: "[name]"; + text-size: 10; + text-fill: @water-text; + text-placement: line; + text-face-name: @oblique-fonts; + text-halo-radius: 1; + [lock = 'yes'][zoom >= 17] { + text-placement: point; + text-wrap-width: 20; + } + } + + [waterway = 'derelict_canal'][zoom >= 13] { + text-name: "[name]"; + text-size: 10; + text-fill: #80d1ae; + text-face-name: @oblique-fonts; + text-placement: line; + text-spacing: 600; + text-halo-radius: 1; + [zoom >= 14] { + text-size: 12; + } + } +}