├── gwc └── metadata.properties ├── data ├── .gitignore └── keepme.txt ├── imposm ├── .gitignore └── images │ ├── win-restore.png │ ├── win-create-db.png │ ├── win-create-db-dialog.png │ ├── win-restore-dialog-1.png │ └── win-restore-dialog-2.png ├── logs └── .gitignore ├── security ├── masterpw │ └── default │ │ ├── passwd │ │ └── config.xml ├── masterpw.digest ├── masterpw.xml ├── geoserver.jceks ├── version.properties ├── filter │ ├── sslFilter │ │ └── config.xml │ ├── exception │ │ └── config.xml │ ├── anonymous │ │ └── config.xml │ ├── formLogout │ │ └── config.xml │ ├── rememberme │ │ └── config.xml │ ├── basic │ │ └── config.xml │ ├── contextAsc │ │ └── config.xml │ └── contextNoAsc │ │ └── config.xml └── auth │ └── default │ └── config.xml ├── map.png ├── workspaces ├── osm │ ├── styles │ │ ├── coast_poly.css │ │ ├── world_dark.css │ │ ├── coast_poly_dark.css │ │ ├── icesheet.css │ │ ├── water.css │ │ ├── simplified_water.css │ │ ├── buildup.css │ │ ├── builtup_dark.css │ │ ├── world_light.css │ │ ├── coast_poly_light.css │ │ ├── symbols │ │ │ ├── mud.png │ │ │ ├── reef.png │ │ │ ├── beach.png │ │ │ ├── cliff.png │ │ │ ├── cliff2.png │ │ │ ├── danger.png │ │ │ ├── forest.png │ │ │ ├── quarry.png │ │ │ ├── scrub.png │ │ │ ├── dog_park.png │ │ │ ├── golf.p.20.png │ │ │ ├── orchard.png │ │ │ ├── vineyard.png │ │ │ ├── wetland.png │ │ │ ├── allotments.png │ │ │ ├── chalet.p.16.png │ │ │ ├── embankment.png │ │ │ ├── wetland_bog.png │ │ │ ├── alpinehut.p.16.png │ │ │ ├── beach_coarse.png │ │ │ ├── rock_overlay.png │ │ │ ├── scree_overlay.png │ │ │ ├── shop │ │ │ │ └── butcher.png │ │ │ ├── wetland_marsh.png │ │ │ ├── wetland_reed.png │ │ │ ├── wetland_swamp.png │ │ │ ├── bus_station.n.16.png │ │ │ ├── guest_house.p.16.png │ │ │ ├── wetland_mangrove.png │ │ │ ├── grave_yard_generic.png │ │ │ ├── grave_yard_jewish.png │ │ │ ├── grey_vertical_hatch.png │ │ │ ├── military_red_hatch.png │ │ │ ├── miniature_golf.p.20.png │ │ │ ├── grave_yard_christian.png │ │ │ ├── transport_slipway.p.20.png │ │ │ ├── generating_patterns │ │ │ │ ├── wetland_bog@2x.png │ │ │ │ ├── rock_overlay@2x.png │ │ │ │ ├── scree_overlay@2x.png │ │ │ │ ├── wetland_marsh@2x.png │ │ │ │ ├── wetland_reed@2x.png │ │ │ │ ├── wetland_swamp@2x.png │ │ │ │ ├── wetland_generic@2x.png │ │ │ │ └── wetland_mangrove@2x.png │ │ │ ├── square.svg │ │ │ ├── liftgate.svg │ │ │ └── shields │ │ │ │ ├── motorway_1x1.svg │ │ │ │ ├── motorway_1x2.svg │ │ │ │ ├── motorway_1x3.svg │ │ │ │ ├── motorway_1x4.svg │ │ │ │ ├── motorway_2x1.svg │ │ │ │ ├── motorway_2x2.svg │ │ │ │ ├── motorway_2x3.svg │ │ │ │ ├── motorway_2x4.svg │ │ │ │ ├── motorway_3x1.svg │ │ │ │ ├── motorway_3x2.svg │ │ │ │ ├── motorway_3x3.svg │ │ │ │ ├── motorway_3x4.svg │ │ │ │ ├── motorway_4x1.svg │ │ │ │ ├── motorway_4x2.svg │ │ │ │ ├── motorway_4x3.svg │ │ │ │ ├── motorway_4x4.svg │ │ │ │ ├── motorway_5x1.svg │ │ │ │ ├── motorway_5x2.svg │ │ │ │ ├── motorway_5x3.svg │ │ │ │ ├── motorway_5x4.svg │ │ │ │ ├── motorway_6x1.svg │ │ │ │ ├── motorway_6x2.svg │ │ │ │ ├── motorway_6x3.svg │ │ │ │ ├── motorway_6x4.svg │ │ │ │ ├── motorway_7x1.svg │ │ │ │ ├── motorway_7x2.svg │ │ │ │ ├── motorway_7x3.svg │ │ │ │ ├── motorway_7x4.svg │ │ │ │ ├── motorway_8x1.svg │ │ │ │ ├── motorway_8x2.svg │ │ │ │ ├── motorway_8x3.svg │ │ │ │ ├── motorway_8x4.svg │ │ │ │ ├── motorway_9x1.svg │ │ │ │ ├── motorway_9x2.svg │ │ │ │ ├── motorway_9x3.svg │ │ │ │ ├── motorway_9x4.svg │ │ │ │ ├── primary_10x1.svg │ │ │ │ ├── primary_10x2.svg │ │ │ │ ├── primary_10x3.svg │ │ │ │ ├── primary_10x4.svg │ │ │ │ ├── primary_11x1.svg │ │ │ │ ├── primary_11x2.svg │ │ │ │ ├── primary_11x3.svg │ │ │ │ ├── primary_11x4.svg │ │ │ │ ├── primary_1x1.svg │ │ │ │ ├── primary_1x2.svg │ │ │ │ ├── primary_1x3.svg │ │ │ │ ├── primary_1x4.svg │ │ │ │ ├── primary_2x1.svg │ │ │ │ ├── primary_2x2.svg │ │ │ │ ├── primary_2x3.svg │ │ │ │ ├── primary_2x4.svg │ │ │ │ ├── primary_3x1.svg │ │ │ │ ├── primary_3x2.svg │ │ │ │ ├── primary_3x3.svg │ │ │ │ ├── primary_3x4.svg │ │ │ │ ├── primary_4x1.svg │ │ │ │ ├── primary_4x2.svg │ │ │ │ ├── primary_4x3.svg │ │ │ │ ├── primary_4x4.svg │ │ │ │ ├── primary_5x1.svg │ │ │ │ ├── primary_5x2.svg │ │ │ │ ├── primary_5x3.svg │ │ │ │ ├── primary_5x4.svg │ │ │ │ ├── primary_6x1.svg │ │ │ │ ├── primary_6x2.svg │ │ │ │ ├── primary_6x3.svg │ │ │ │ ├── primary_6x4.svg │ │ │ │ ├── primary_7x1.svg │ │ │ │ ├── primary_7x2.svg │ │ │ │ ├── primary_7x3.svg │ │ │ │ ├── primary_7x4.svg │ │ │ │ ├── primary_8x1.svg │ │ │ │ ├── primary_8x2.svg │ │ │ │ ├── primary_8x3.svg │ │ │ │ ├── primary_8x4.svg │ │ │ │ ├── primary_9x1.svg │ │ │ │ ├── primary_9x2.svg │ │ │ │ ├── primary_9x3.svg │ │ │ │ ├── primary_9x4.svg │ │ │ │ ├── tertiary_1x1.svg │ │ │ │ ├── tertiary_1x2.svg │ │ │ │ ├── tertiary_1x3.svg │ │ │ │ ├── tertiary_1x4.svg │ │ │ │ ├── tertiary_2x1.svg │ │ │ │ ├── tertiary_2x2.svg │ │ │ │ ├── tertiary_2x3.svg │ │ │ │ ├── tertiary_2x4.svg │ │ │ │ ├── tertiary_3x1.svg │ │ │ │ ├── tertiary_3x2.svg │ │ │ │ ├── tertiary_3x3.svg │ │ │ │ ├── tertiary_3x4.svg │ │ │ │ ├── tertiary_4x1.svg │ │ │ │ ├── tertiary_4x2.svg │ │ │ │ ├── tertiary_4x3.svg │ │ │ │ ├── tertiary_4x4.svg │ │ │ │ ├── tertiary_5x1.svg │ │ │ │ ├── tertiary_5x2.svg │ │ │ │ ├── tertiary_5x3.svg │ │ │ │ ├── tertiary_5x4.svg │ │ │ │ ├── tertiary_6x1.svg │ │ │ │ ├── tertiary_6x2.svg │ │ │ │ ├── tertiary_6x3.svg │ │ │ │ ├── tertiary_6x4.svg │ │ │ │ ├── tertiary_7x1.svg │ │ │ │ ├── tertiary_7x2.svg │ │ │ │ ├── tertiary_7x3.svg │ │ │ │ ├── tertiary_7x4.svg │ │ │ │ ├── tertiary_8x1.svg │ │ │ │ ├── tertiary_8x2.svg │ │ │ │ ├── tertiary_8x3.svg │ │ │ │ ├── tertiary_8x4.svg │ │ │ │ ├── tertiary_9x1.svg │ │ │ │ ├── tertiary_9x2.svg │ │ │ │ ├── tertiary_9x3.svg │ │ │ │ ├── tertiary_9x4.svg │ │ │ │ ├── trunk_10x1.svg │ │ │ │ ├── trunk_10x2.svg │ │ │ │ ├── trunk_10x3.svg │ │ │ │ ├── trunk_10x4.svg │ │ │ │ ├── trunk_11x1.svg │ │ │ │ ├── trunk_11x2.svg │ │ │ │ ├── trunk_11x3.svg │ │ │ │ ├── trunk_11x4.svg │ │ │ │ ├── trunk_1x1.svg │ │ │ │ ├── trunk_1x2.svg │ │ │ │ ├── trunk_1x3.svg │ │ │ │ ├── trunk_1x4.svg │ │ │ │ ├── trunk_2x1.svg │ │ │ │ ├── trunk_2x2.svg │ │ │ │ ├── trunk_2x3.svg │ │ │ │ ├── trunk_2x4.svg │ │ │ │ ├── trunk_3x1.svg │ │ │ │ ├── trunk_3x2.svg │ │ │ │ ├── trunk_3x3.svg │ │ │ │ ├── trunk_3x4.svg │ │ │ │ ├── trunk_4x1.svg │ │ │ │ ├── trunk_4x2.svg │ │ │ │ ├── trunk_4x3.svg │ │ │ │ ├── trunk_4x4.svg │ │ │ │ ├── trunk_5x1.svg │ │ │ │ ├── trunk_5x2.svg │ │ │ │ ├── trunk_5x3.svg │ │ │ │ ├── trunk_5x4.svg │ │ │ │ ├── trunk_6x1.svg │ │ │ │ ├── trunk_6x2.svg │ │ │ │ ├── trunk_6x3.svg │ │ │ │ ├── trunk_6x4.svg │ │ │ │ ├── trunk_7x1.svg │ │ │ │ ├── trunk_7x2.svg │ │ │ │ ├── trunk_7x3.svg │ │ │ │ ├── trunk_7x4.svg │ │ │ │ ├── trunk_8x1.svg │ │ │ │ ├── trunk_8x2.svg │ │ │ │ ├── trunk_8x3.svg │ │ │ │ ├── trunk_8x4.svg │ │ │ │ ├── trunk_9x1.svg │ │ │ │ ├── trunk_9x2.svg │ │ │ │ ├── trunk_9x3.svg │ │ │ │ ├── trunk_9x4.svg │ │ │ │ ├── motorway_10x1.svg │ │ │ │ ├── motorway_10x1_z16.svg │ │ │ │ ├── motorway_10x1_z18.svg │ │ │ │ ├── motorway_10x2.svg │ │ │ │ ├── motorway_10x2_z16.svg │ │ │ │ ├── motorway_10x2_z18.svg │ │ │ │ ├── motorway_10x3.svg │ │ │ │ ├── motorway_10x3_z16.svg │ │ │ │ ├── motorway_10x3_z18.svg │ │ │ │ ├── motorway_10x4.svg │ │ │ │ ├── motorway_10x4_z16.svg │ │ │ │ ├── motorway_10x4_z18.svg │ │ │ │ ├── motorway_11x1.svg │ │ │ │ ├── motorway_11x1_z16.svg │ │ │ │ ├── motorway_11x1_z18.svg │ │ │ │ ├── motorway_11x2.svg │ │ │ │ ├── motorway_11x2_z16.svg │ │ │ │ ├── motorway_11x2_z18.svg │ │ │ │ ├── motorway_11x3.svg │ │ │ │ ├── motorway_11x3_z16.svg │ │ │ │ ├── motorway_11x3_z18.svg │ │ │ │ ├── motorway_11x4.svg │ │ │ │ ├── motorway_11x4_z16.svg │ │ │ │ ├── motorway_11x4_z18.svg │ │ │ │ ├── motorway_1x1_z16.svg │ │ │ │ ├── motorway_1x1_z18.svg │ │ │ │ ├── motorway_1x2_z16.svg │ │ │ │ ├── motorway_1x2_z18.svg │ │ │ │ ├── motorway_1x3_z16.svg │ │ │ │ ├── motorway_1x3_z18.svg │ │ │ │ ├── motorway_1x4_z16.svg │ │ │ │ ├── motorway_1x4_z18.svg │ │ │ │ ├── motorway_2x1_z16.svg │ │ │ │ ├── motorway_2x1_z18.svg │ │ │ │ ├── motorway_2x2_z16.svg │ │ │ │ ├── motorway_2x2_z18.svg │ │ │ │ ├── motorway_2x3_z16.svg │ │ │ │ ├── motorway_2x3_z18.svg │ │ │ │ ├── motorway_2x4_z16.svg │ │ │ │ ├── motorway_2x4_z18.svg │ │ │ │ ├── motorway_3x1_z16.svg │ │ │ │ ├── motorway_3x1_z18.svg │ │ │ │ ├── motorway_3x2_z16.svg │ │ │ │ ├── motorway_3x2_z18.svg │ │ │ │ ├── motorway_3x3_z16.svg │ │ │ │ ├── motorway_3x3_z18.svg │ │ │ │ ├── motorway_3x4_z16.svg │ │ │ │ ├── motorway_3x4_z18.svg │ │ │ │ ├── motorway_4x1_z16.svg │ │ │ │ ├── motorway_4x1_z18.svg │ │ │ │ ├── motorway_4x2_z16.svg │ │ │ │ ├── motorway_4x2_z18.svg │ │ │ │ ├── motorway_4x3_z16.svg │ │ │ │ ├── motorway_4x3_z18.svg │ │ │ │ ├── motorway_4x4_z16.svg │ │ │ │ ├── motorway_4x4_z18.svg │ │ │ │ ├── motorway_5x1_z16.svg │ │ │ │ ├── motorway_5x1_z18.svg │ │ │ │ ├── motorway_5x2_z16.svg │ │ │ │ ├── motorway_5x2_z18.svg │ │ │ │ ├── motorway_5x3_z16.svg │ │ │ │ ├── motorway_5x3_z18.svg │ │ │ │ ├── motorway_5x4_z16.svg │ │ │ │ ├── motorway_5x4_z18.svg │ │ │ │ ├── motorway_6x1_z16.svg │ │ │ │ ├── motorway_6x1_z18.svg │ │ │ │ ├── motorway_6x2_z16.svg │ │ │ │ ├── motorway_6x2_z18.svg │ │ │ │ ├── motorway_6x3_z16.svg │ │ │ │ ├── motorway_6x3_z18.svg │ │ │ │ ├── motorway_6x4_z16.svg │ │ │ │ ├── motorway_6x4_z18.svg │ │ │ │ ├── motorway_7x1_z16.svg │ │ │ │ ├── motorway_7x1_z18.svg │ │ │ │ ├── motorway_7x2_z16.svg │ │ │ │ ├── motorway_7x2_z18.svg │ │ │ │ ├── motorway_7x3_z16.svg │ │ │ │ ├── motorway_7x3_z18.svg │ │ │ │ ├── motorway_7x4_z16.svg │ │ │ │ ├── motorway_7x4_z18.svg │ │ │ │ ├── motorway_8x1_z16.svg │ │ │ │ ├── motorway_8x1_z18.svg │ │ │ │ ├── motorway_8x2_z16.svg │ │ │ │ ├── motorway_8x2_z18.svg │ │ │ │ ├── motorway_8x3_z16.svg │ │ │ │ ├── motorway_8x3_z18.svg │ │ │ │ ├── motorway_8x4_z16.svg │ │ │ │ ├── motorway_8x4_z18.svg │ │ │ │ ├── motorway_9x1_z16.svg │ │ │ │ ├── motorway_9x1_z18.svg │ │ │ │ ├── motorway_9x2_z16.svg │ │ │ │ ├── motorway_9x2_z18.svg │ │ │ │ ├── motorway_9x3_z16.svg │ │ │ │ ├── motorway_9x3_z18.svg │ │ │ │ ├── motorway_9x4_z16.svg │ │ │ │ ├── motorway_9x4_z18.svg │ │ │ │ ├── primary_10x1_z16.svg │ │ │ │ ├── primary_10x1_z18.svg │ │ │ │ ├── primary_10x2_z16.svg │ │ │ │ ├── primary_10x2_z18.svg │ │ │ │ ├── primary_10x3_z16.svg │ │ │ │ ├── primary_10x3_z18.svg │ │ │ │ ├── primary_10x4_z16.svg │ │ │ │ ├── primary_10x4_z18.svg │ │ │ │ ├── primary_11x1_z16.svg │ │ │ │ ├── primary_11x1_z18.svg │ │ │ │ ├── primary_11x2_z16.svg │ │ │ │ ├── primary_11x2_z18.svg │ │ │ │ ├── primary_11x3_z16.svg │ │ │ │ ├── primary_11x3_z18.svg │ │ │ │ ├── primary_11x4_z16.svg │ │ │ │ ├── primary_11x4_z18.svg │ │ │ │ ├── primary_1x1_z16.svg │ │ │ │ ├── primary_1x1_z18.svg │ │ │ │ ├── primary_1x2_z16.svg │ │ │ │ ├── primary_1x2_z18.svg │ │ │ │ ├── primary_1x3_z16.svg │ │ │ │ ├── primary_1x3_z18.svg │ │ │ │ ├── primary_1x4_z16.svg │ │ │ │ ├── primary_1x4_z18.svg │ │ │ │ ├── primary_2x1_z16.svg │ │ │ │ ├── primary_2x1_z18.svg │ │ │ │ ├── primary_2x2_z16.svg │ │ │ │ ├── primary_2x2_z18.svg │ │ │ │ ├── primary_2x3_z16.svg │ │ │ │ ├── primary_2x3_z18.svg │ │ │ │ ├── primary_2x4_z16.svg │ │ │ │ ├── primary_2x4_z18.svg │ │ │ │ ├── primary_3x1_z16.svg │ │ │ │ ├── primary_3x1_z18.svg │ │ │ │ ├── primary_3x2_z16.svg │ │ │ │ ├── primary_3x2_z18.svg │ │ │ │ ├── primary_3x3_z16.svg │ │ │ │ ├── primary_3x3_z18.svg │ │ │ │ ├── primary_3x4_z16.svg │ │ │ │ ├── primary_3x4_z18.svg │ │ │ │ ├── primary_4x1_z16.svg │ │ │ │ ├── primary_4x1_z18.svg │ │ │ │ ├── primary_4x2_z16.svg │ │ │ │ ├── primary_4x2_z18.svg │ │ │ │ ├── primary_4x3_z16.svg │ │ │ │ ├── primary_4x3_z18.svg │ │ │ │ ├── primary_4x4_z16.svg │ │ │ │ ├── primary_4x4_z18.svg │ │ │ │ ├── primary_5x1_z16.svg │ │ │ │ ├── primary_5x1_z18.svg │ │ │ │ ├── primary_5x2_z16.svg │ │ │ │ ├── primary_5x2_z18.svg │ │ │ │ ├── primary_5x3_z16.svg │ │ │ │ ├── primary_5x3_z18.svg │ │ │ │ ├── primary_5x4_z16.svg │ │ │ │ ├── primary_5x4_z18.svg │ │ │ │ ├── primary_6x1_z16.svg │ │ │ │ ├── primary_6x1_z18.svg │ │ │ │ ├── primary_6x2_z16.svg │ │ │ │ ├── primary_6x2_z18.svg │ │ │ │ ├── primary_6x3_z16.svg │ │ │ │ ├── primary_6x3_z18.svg │ │ │ │ ├── primary_6x4_z16.svg │ │ │ │ ├── primary_6x4_z18.svg │ │ │ │ ├── primary_7x1_z16.svg │ │ │ │ ├── primary_7x1_z18.svg │ │ │ │ ├── primary_7x2_z16.svg │ │ │ │ ├── primary_7x2_z18.svg │ │ │ │ ├── primary_7x3_z16.svg │ │ │ │ ├── primary_7x3_z18.svg │ │ │ │ ├── primary_7x4_z16.svg │ │ │ │ ├── primary_7x4_z18.svg │ │ │ │ ├── primary_8x1_z16.svg │ │ │ │ ├── primary_8x1_z18.svg │ │ │ │ ├── primary_8x2_z16.svg │ │ │ │ ├── primary_8x2_z18.svg │ │ │ │ ├── primary_8x3_z16.svg │ │ │ │ ├── primary_8x3_z18.svg │ │ │ │ ├── primary_8x4_z16.svg │ │ │ │ ├── primary_8x4_z18.svg │ │ │ │ ├── primary_9x1_z16.svg │ │ │ │ ├── primary_9x1_z18.svg │ │ │ │ ├── primary_9x2_z16.svg │ │ │ │ ├── primary_9x2_z18.svg │ │ │ │ ├── primary_9x3_z16.svg │ │ │ │ ├── primary_9x3_z18.svg │ │ │ │ ├── primary_9x4_z16.svg │ │ │ │ ├── primary_9x4_z18.svg │ │ │ │ ├── secondary_10x1.svg │ │ │ │ ├── secondary_10x2.svg │ │ │ │ ├── secondary_10x3.svg │ │ │ │ ├── secondary_10x4.svg │ │ │ │ ├── secondary_11x1.svg │ │ │ │ ├── secondary_11x2.svg │ │ │ │ ├── secondary_11x3.svg │ │ │ │ ├── secondary_11x4.svg │ │ │ │ ├── secondary_1x1.svg │ │ │ │ ├── secondary_1x1_z16.svg │ │ │ │ ├── secondary_1x1_z18.svg │ │ │ │ ├── secondary_1x2.svg │ │ │ │ ├── secondary_1x2_z16.svg │ │ │ │ ├── secondary_1x2_z18.svg │ │ │ │ ├── secondary_1x3.svg │ │ │ │ ├── secondary_1x3_z16.svg │ │ │ │ ├── secondary_1x3_z18.svg │ │ │ │ ├── secondary_1x4.svg │ │ │ │ ├── secondary_1x4_z16.svg │ │ │ │ ├── secondary_1x4_z18.svg │ │ │ │ ├── secondary_2x1.svg │ │ │ │ ├── secondary_2x1_z16.svg │ │ │ │ ├── secondary_2x1_z18.svg │ │ │ │ ├── secondary_2x2.svg │ │ │ │ ├── secondary_2x2_z16.svg │ │ │ │ ├── secondary_2x2_z18.svg │ │ │ │ ├── secondary_2x3.svg │ │ │ │ ├── secondary_2x3_z16.svg │ │ │ │ ├── secondary_2x3_z18.svg │ │ │ │ ├── secondary_2x4.svg │ │ │ │ ├── secondary_2x4_z16.svg │ │ │ │ ├── secondary_2x4_z18.svg │ │ │ │ ├── secondary_3x1.svg │ │ │ │ ├── secondary_3x1_z16.svg │ │ │ │ ├── secondary_3x1_z18.svg │ │ │ │ ├── secondary_3x2.svg │ │ │ │ ├── secondary_3x2_z16.svg │ │ │ │ ├── secondary_3x2_z18.svg │ │ │ │ ├── secondary_3x3.svg │ │ │ │ ├── secondary_3x3_z16.svg │ │ │ │ ├── secondary_3x3_z18.svg │ │ │ │ ├── secondary_3x4.svg │ │ │ │ ├── secondary_3x4_z16.svg │ │ │ │ ├── secondary_3x4_z18.svg │ │ │ │ ├── secondary_4x1.svg │ │ │ │ ├── secondary_4x1_z16.svg │ │ │ │ ├── secondary_4x1_z18.svg │ │ │ │ ├── secondary_4x2.svg │ │ │ │ ├── secondary_4x2_z16.svg │ │ │ │ ├── secondary_4x2_z18.svg │ │ │ │ ├── secondary_4x3.svg │ │ │ │ ├── secondary_4x3_z16.svg │ │ │ │ ├── secondary_4x3_z18.svg │ │ │ │ ├── secondary_4x4.svg │ │ │ │ ├── secondary_4x4_z16.svg │ │ │ │ ├── secondary_4x4_z18.svg │ │ │ │ ├── secondary_5x1.svg │ │ │ │ ├── secondary_5x1_z16.svg │ │ │ │ ├── secondary_5x1_z18.svg │ │ │ │ ├── secondary_5x2.svg │ │ │ │ ├── secondary_5x2_z16.svg │ │ │ │ ├── secondary_5x2_z18.svg │ │ │ │ ├── secondary_5x3.svg │ │ │ │ ├── secondary_5x3_z16.svg │ │ │ │ ├── secondary_5x3_z18.svg │ │ │ │ ├── secondary_5x4.svg │ │ │ │ └── secondary_5x4_z16.svg │ │ ├── builtup_light.css │ │ ├── world.css │ │ ├── all_regions.css │ │ ├── all_boundaries_dark.css │ │ ├── all_regions_dark.css │ │ ├── all_regions_light.css │ │ ├── all_boundaries_light.css │ │ ├── waterways_dark.css │ │ ├── bathymetry_dark.css │ │ ├── waterways_light.css │ │ ├── all_boundaries.css │ │ ├── bathymetry_light.css │ │ ├── transport_areas.css │ │ └── icesheet_outlines.css │ ├── workspace.xml │ └── namespace.xml └── default.xml ├── structure.png ├── user_projections └── epsg.properties ├── logging.xml └── styles ├── line.xml ├── point.xml ├── generic.xml ├── polygon.xml └── raster.xml /gwc/metadata.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | osm-lowres.gpkg -------------------------------------------------------------------------------- /imposm/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | 3 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | geoserver*.log* -------------------------------------------------------------------------------- /security/masterpw/default/passwd: -------------------------------------------------------------------------------- 1 | 3Gu9U3xKK1DdKLlI3KiqxXsFcetfUA54 -------------------------------------------------------------------------------- /map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/map.png -------------------------------------------------------------------------------- /workspaces/osm/styles/coast_poly.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800000] { 2 | fill: #f2efe9; 3 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/world_dark.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | fill: #888888; 3 | } -------------------------------------------------------------------------------- /structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/structure.png -------------------------------------------------------------------------------- /workspaces/osm/styles/coast_poly_dark.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800k] { 2 | fill: #888888; 3 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/icesheet.css: -------------------------------------------------------------------------------- 1 | [@sd < 12500000][@sd > 250k] { 2 | fill: #ddecec; 3 | } -------------------------------------------------------------------------------- /security/masterpw.digest: -------------------------------------------------------------------------------- 1 | digest1:SOtESJPwYkKX8/fErV1s5cwqTLHhG9xjbmy5nXZIKY0qsp0MeuF/TRYG5TJRnAAN -------------------------------------------------------------------------------- /security/masterpw.xml: -------------------------------------------------------------------------------- 1 | 2 | default 3 | -------------------------------------------------------------------------------- /workspaces/osm/styles/water.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800k] { 2 | stroke: #aad3df; 3 | fill: #aad3df; 4 | } -------------------------------------------------------------------------------- /security/geoserver.jceks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/security/geoserver.jceks -------------------------------------------------------------------------------- /workspaces/osm/styles/simplified_water.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | stroke: #aad3df; 3 | fill: #aad3df; 4 | } -------------------------------------------------------------------------------- /imposm/images/win-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/imposm/images/win-restore.png -------------------------------------------------------------------------------- /workspaces/osm/styles/buildup.css: -------------------------------------------------------------------------------- 1 | /* @title Built up */ 2 | [@scale < 3000000][@scale > 800000] { 3 | fill: #ddd; 4 | } -------------------------------------------------------------------------------- /imposm/images/win-create-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/imposm/images/win-create-db.png -------------------------------------------------------------------------------- /user_projections/epsg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/user_projections/epsg.properties -------------------------------------------------------------------------------- /data/keepme.txt: -------------------------------------------------------------------------------- 1 | This directory is meant to contain data, that it too large 2 | to fit into Git, and needs to be downladed separately. -------------------------------------------------------------------------------- /workspaces/default.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl-41697926:164a2136a44:-7fe4 3 | osm 4 | -------------------------------------------------------------------------------- /workspaces/osm/styles/builtup_dark.css: -------------------------------------------------------------------------------- 1 | /* @title Built up */ 2 | [@scale < 3M] { 3 | fill: #828282; 4 | stroke: #727272 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/world_light.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | fill: #F2F2F0; 3 | stroke: #F2F2F0; 4 | stroke-width: 0.1; 5 | } -------------------------------------------------------------------------------- /imposm/images/win-create-db-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/imposm/images/win-create-db-dialog.png -------------------------------------------------------------------------------- /imposm/images/win-restore-dialog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/imposm/images/win-restore-dialog-1.png -------------------------------------------------------------------------------- /imposm/images/win-restore-dialog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/imposm/images/win-restore-dialog-2.png -------------------------------------------------------------------------------- /workspaces/osm/styles/coast_poly_light.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800k] { 2 | fill: #F2F2F0; 3 | stroke: #F2F2F0; 4 | stroke-width: 0.1; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/mud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/mud.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/reef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/reef.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/beach.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/cliff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/cliff.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/cliff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/cliff2.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/danger.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/forest.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/quarry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/quarry.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/scrub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/scrub.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/dog_park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/dog_park.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/golf.p.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/golf.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/orchard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/orchard.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/vineyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/vineyard.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/allotments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/allotments.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/chalet.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/chalet.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/embankment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/embankment.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_bog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland_bog.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/alpinehut.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/alpinehut.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/beach_coarse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/beach_coarse.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/rock_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/rock_overlay.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/scree_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/scree_overlay.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shop/butcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/shop/butcher.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_marsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland_marsh.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland_reed.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_swamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland_swamp.png -------------------------------------------------------------------------------- /security/version.properties: -------------------------------------------------------------------------------- 1 | #Current version of the security directory. Do not remove or alter this file 2 | #Fri Apr 27 16:50:33 CEST 2018 3 | version=2.5 4 | -------------------------------------------------------------------------------- /workspaces/osm/styles/builtup_light.css: -------------------------------------------------------------------------------- 1 | /* @title Built up */ 2 | [@scale < 3M] { 3 | fill: darken('#F2F2F0', 5%); 4 | stroke: darken('#F2F2F0', 10%); 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/bus_station.n.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/bus_station.n.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/guest_house.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/guest_house.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_mangrove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/wetland_mangrove.png -------------------------------------------------------------------------------- /workspaces/osm/styles/world.css: -------------------------------------------------------------------------------- 1 | [@sd > 800000] { 2 | fill: #f2efe9; 3 | [@sd < 100M] { 4 | stroke: #5ab0c9; 5 | stroke-width: 0.1; 6 | }; 7 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/grave_yard_generic.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_jewish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/grave_yard_jewish.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grey_vertical_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/grey_vertical_hatch.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/military_red_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/military_red_hatch.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/miniature_golf.p.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/miniature_golf.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_christian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/grave_yard_christian.png -------------------------------------------------------------------------------- /workspaces/osm/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl-41697926:164a2136a44:-7fe4 3 | osm 4 | false 5 | -------------------------------------------------------------------------------- /logging.xml: -------------------------------------------------------------------------------- 1 | 2 | PRODUCTION_LOGGING.properties 3 | logs/geoserver.log 4 | true 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/all_regions.css: -------------------------------------------------------------------------------- 1 | [@sd < 50M][@sd > 250k][scalerank not in (0, 10, 11)] { 2 | stroke: #ac46ac; 3 | stroke-opacity: 0.3; 4 | stroke-width: 0.1; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/transport_slipway.p.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/transport_slipway.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/all_boundaries_dark.css: -------------------------------------------------------------------------------- 1 | [@sd < 300M][@sd > 750k] { 2 | stroke: #454545; 3 | stroke-width: [interpolate(@sd, 800k, 1, 300M, 0.2)]; 4 | stroke-opacity: 0.6; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/all_regions_dark.css: -------------------------------------------------------------------------------- 1 | [scalerank not in (0)][(559M / pow(2, min_zoom - 1)) > @sd] { 2 | stroke: #505050; 3 | stroke-opacity: 0.5; 4 | stroke-width: 0.5; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_bog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_bog@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/all_regions_light.css: -------------------------------------------------------------------------------- 1 | [scalerank not in (0)][(559M / pow(2, min_zoom - 1)) > @sd] { 2 | stroke: darken(#F2F2F0, 20%); 3 | stroke-opacity: 0.5; 4 | stroke-width: 0.5; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/rock_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/rock_overlay@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/scree_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/scree_overlay@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_marsh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_marsh@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_reed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_reed@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_swamp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_swamp@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/all_boundaries_light.css: -------------------------------------------------------------------------------- 1 | [@sd < 300M][@sd > 750k] { 2 | stroke: darken(#F2F2F0, 20%); 3 | stroke-width: [interpolate(@sd, 800k, 1, 300M, 0.2)]; 4 | stroke-opacity: 0.6; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_generic@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_mangrove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/HEAD/workspaces/osm/styles/symbols/generating_patterns/wetland_mangrove@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/waterways_dark.css: -------------------------------------------------------------------------------- 1 | @mode 'Flat'; 2 | 3 | [type = 'river'][@scale < 1M] { 4 | stroke: #606060; 5 | stroke-width: [interpolate(env('wms_scale_denominator'), 100k, 1, 500k, 0.3)]; 6 | } -------------------------------------------------------------------------------- /workspaces/osm/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl-41697926:164a2136a44:-7fe3 3 | osm 4 | http://geoserver.org/osm 5 | false 6 | -------------------------------------------------------------------------------- /workspaces/osm/styles/bathymetry_dark.css: -------------------------------------------------------------------------------- 1 | /* @title bathymetry */ 2 | * { 3 | fill: [interpolate(depth, 0, '#606060', 10000, '#202020', 'color')]; 4 | sort-by: 'depth'; 5 | background: #606060 6 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/waterways_light.css: -------------------------------------------------------------------------------- 1 | @mode 'Flat'; 2 | 3 | [type = 'river'][@scale < 1M] { 4 | stroke: #CAD2D3; 5 | stroke-width: [interpolate(env('wms_scale_denominator'), 100k, 1, 500k, 0.3)]; 6 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/all_boundaries.css: -------------------------------------------------------------------------------- 1 | [@sd < 300M][@sd > 750k] { 2 | stroke: #ac46ac; 3 | stroke-width: [interpolate(env('wms_scale_denominator', 50000000), 800000, 2.5, 50000000, 0.6)]; 4 | stroke-opacity: 0.4; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/bathymetry_light.css: -------------------------------------------------------------------------------- 1 | /* @title bathymetry */ 2 | * { 3 | fill: [interpolate(depth, 0, '#CAD2D3', 10000, darken('#CAD2D3', '30%'), 'color')]; 4 | sort-by: 'depth'; 5 | background: #CAD2D3 6 | } -------------------------------------------------------------------------------- /security/filter/sslFilter/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7fee 3 | sslFilter 4 | org.geoserver.security.filter.GeoServerSSLFilter 5 | 443 6 | -------------------------------------------------------------------------------- /security/filter/exception/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff2 3 | exception 4 | org.geoserver.security.filter.GeoServerExceptionTranslationFilter 5 | -------------------------------------------------------------------------------- /security/filter/anonymous/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff7 3 | anonymous 4 | org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter 5 | -------------------------------------------------------------------------------- /security/filter/formLogout/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff3 3 | formLogout 4 | org.geoserver.security.filter.GeoServerLogoutFilter 5 | /web/ 6 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /workspaces/osm/styles/transport_areas.css: -------------------------------------------------------------------------------- 1 | @mode 'Flat'; 2 | 3 | [type = 'apron'][@sd < 800k] { 4 | fill: #e9d1ff; 5 | } 6 | 7 | [type = 'platform'][@sd < 15k] { 8 | fill: #bbbbbb; 9 | stroke: #808080; 10 | stroke-width: 0.5; 11 | } -------------------------------------------------------------------------------- /security/filter/rememberme/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff6 3 | rememberme 4 | org.geoserver.security.filter.GeoServerRememberMeAuthenticationFilter 5 | -------------------------------------------------------------------------------- /styles/line.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/point.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/generic.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/polygon.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/raster.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /security/filter/basic/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ffb 3 | basic 4 | org.geoserver.security.filter.GeoServerBasicAuthenticationFilter 5 | true 6 | -------------------------------------------------------------------------------- /workspaces/osm/styles/icesheet_outlines.css: -------------------------------------------------------------------------------- 1 | /* @Title Icesheet outline */ 2 | [@sd < 12500000][@sd > 250k][ice_edge='ice_ocean' OR ice_edge = 'ice_land'] { 3 | stroke: #9cf; 4 | stroke-width: 0.5; 5 | [@scale <= 800000] { 6 | stroke-dasharray: 4, 3; 7 | }; 8 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/liftgate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /security/auth/default/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff0 3 | default 4 | org.geoserver.security.auth.UsernamePasswordAuthenticationProvider 5 | default 6 | -------------------------------------------------------------------------------- /security/filter/contextAsc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff9 3 | contextAsc 4 | org.geoserver.security.filter.GeoServerSecurityContextPersistenceFilter 5 | true 6 | -------------------------------------------------------------------------------- /security/filter/contextNoAsc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff8 3 | contextNoAsc 4 | org.geoserver.security.filter.GeoServerSecurityContextPersistenceFilter 5 | false 6 | -------------------------------------------------------------------------------- /security/masterpw/default/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-8000 3 | default 4 | org.geoserver.security.password.URLMasterPasswordProvider 5 | false 6 | file:passwd 7 | true 8 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_1x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_1x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_1x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_1x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_2x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_2x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_2x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_2x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_3x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_3x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_3x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_3x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_4x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_4x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_4x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_4x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_5x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_5x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_5x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_5x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_6x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_6x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_6x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_6x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_7x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_7x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_7x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_7x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_8x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_8x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_8x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_8x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_9x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_9x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_9x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/tertiary_9x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_10x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_10x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_10x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_10x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_11x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_11x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_11x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_11x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_1x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_1x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_1x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_1x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_2x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_2x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_2x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_2x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_3x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_3x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_3x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_3x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_4x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_4x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_4x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_4x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_5x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_5x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_5x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_5x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_6x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_6x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_6x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_6x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_7x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_7x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_7x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_7x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_8x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_8x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_8x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_8x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_9x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_9x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_9x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/trunk_9x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_10x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_11x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_1x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_2x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_3x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_4x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_5x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_6x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_7x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_8x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/motorway_9x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_10x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_11x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_1x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_2x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_3x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_4x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_5x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_6x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_7x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_8x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/primary_9x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_10x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_10x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_10x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_10x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_11x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_11x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_11x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_11x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_1x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_2x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_3x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_4x4_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x1_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x1_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x2_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x2_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x3_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x3_z18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/shields/secondary_5x4_z16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | --------------------------------------------------------------------------------