├── LICENSE.md ├── README.md ├── data ├── .gitignore └── keepme.txt ├── global.xml ├── gwc-gs.xml ├── gwc-layers ├── LayerGroupInfoImpl--1e5fb76b_17187bde38c_-7fff.xml ├── LayerGroupInfoImpl--6717fd44_164a392c4e5_315b.xml ├── LayerGroupInfoImpl-4e44a927_1719c449104_3fe7.xml ├── LayerGroupInfoImpl-4e44a927_1719c449104_3fe8.xml ├── LayerGroupInfoImpl-4e44a927_1719c449104_7631.xml ├── LayerGroupInfoImpl-4e44a927_1719cda0d08_-56f8.xml └── LayerGroupInfoImpl-4e44a927_1719cda0d08_-56f9.xml ├── gwc ├── geowebcache.xml └── metadata.properties ├── imposm ├── .gitignore ├── README.md ├── dump-pg.sh ├── images │ ├── win-create-db-dialog.png │ ├── win-create-db.png │ ├── win-restore-dialog-1.png │ ├── win-restore-dialog-2.png │ └── win-restore.png └── mapping.yml ├── logging.xml ├── logs ├── .gitignore ├── DEFAULT_LOGGING.properties ├── GEOSERVER_DEVELOPER_LOGGING.properties ├── GEOTOOLS_DEVELOPER_LOGGING.properties ├── PRODUCTION_LOGGING.properties ├── QUIET_LOGGING.properties ├── TEST_LOGGING.properties └── VERBOSE_LOGGING.properties ├── map.png ├── pregeneralized.xml ├── pregeneralized_lowres.xml ├── security ├── auth │ └── default │ │ └── config.xml ├── config.xml ├── filter │ ├── anonymous │ │ └── config.xml │ ├── basic │ │ └── config.xml │ ├── contextAsc │ │ └── config.xml │ ├── contextNoAsc │ │ └── config.xml │ ├── exception │ │ └── config.xml │ ├── form │ │ └── config.xml │ ├── formLogout │ │ └── config.xml │ ├── interceptor │ │ └── config.xml │ ├── rememberme │ │ └── config.xml │ ├── restInterceptor │ │ └── config.xml │ ├── roleFilter │ │ └── config.xml │ └── sslFilter │ │ └── config.xml ├── geoserver.jceks ├── layers.properties ├── masterpw.digest ├── masterpw.xml ├── masterpw │ └── default │ │ ├── config.xml │ │ └── passwd ├── pwpolicy │ ├── default │ │ └── config.xml │ └── master │ │ └── config.xml ├── rest.properties ├── role │ └── default │ │ ├── config.xml │ │ ├── roles.xml │ │ └── roles.xsd ├── services.properties ├── usergroup │ └── default │ │ ├── config.xml │ │ ├── users.xml │ │ └── users.xsd └── version.properties ├── structure.png ├── styles ├── default_generic.sld ├── default_line.sld ├── default_point.sld ├── default_polygon.sld ├── default_raster.sld ├── generic.xml ├── line.xml ├── point.xml ├── polygon.xml └── raster.xml ├── user_projections └── epsg.properties ├── wcs.xml ├── wfs.xml ├── wms.xml └── workspaces ├── default.xml └── osm ├── layergroups ├── osm.xml ├── osm_defaults.xml ├── simple_dark.xml ├── simple_dark_bg.xml ├── simple_dark_labels.xml ├── simple_light.xml ├── simple_light_bg.xml └── simple_light_labels.xml ├── namespace.xml ├── osm ├── datastore.xml ├── osm_admin │ ├── featuretype.xml │ └── layer.xml ├── osm_amenities │ ├── featuretype.xml │ └── layer.xml ├── osm_boundary │ ├── featuretype.xml │ └── layer.xml ├── osm_buildings │ ├── featuretype.xml │ └── layer.xml ├── osm_housenumbers │ ├── featuretype.xml │ └── layer.xml ├── osm_places │ ├── featuretype.xml │ └── layer.xml ├── osm_transport_areas │ ├── featuretype.xml │ └── layer.xml └── osm_transport_points │ ├── featuretype.xml │ └── layer.xml ├── osm_lowres ├── builtup_area │ ├── featuretype.xml │ └── layer.xml ├── datastore.xml ├── icesheet_outlines │ ├── featuretype.xml │ └── layer.xml ├── icesheet_polygons │ ├── featuretype.xml │ └── layer.xml ├── land_polygons │ ├── featuretype.xml │ └── layer.xml ├── ne_10m_admin_0_boundary_lines_land │ ├── featuretype.xml │ └── layer.xml ├── ne_10m_admin_0_countries_points │ ├── featuretype.xml │ └── layer.xml ├── ne_10m_admin_1_states_provinces_lines │ ├── featuretype.xml │ └── layer.xml ├── simplified_land_polygons │ ├── featuretype.xml │ └── layer.xml ├── simplified_water_polygons │ ├── featuretype.xml │ └── layer.xml └── water_polygons │ ├── featuretype.xml │ └── layer.xml ├── osm_pregeneralized ├── datastore.xml ├── landusages │ ├── featuretype.xml │ └── layer.xml ├── roads │ ├── featuretype.xml │ └── layer.xml ├── waterareas │ ├── featuretype.xml │ └── layer.xml └── waterways │ ├── featuretype.xml │ └── layer.xml ├── pregeneralized_lowres ├── datastore.xml └── ne_10m_bathymetry │ ├── featuretype.xml │ └── layer.xml ├── styles ├── addresses.css ├── addresses.sld ├── addresses.xml ├── admin_labels.css ├── admin_labels.sld ├── admin_labels.xml ├── all_boundaries.css ├── all_boundaries.sld ├── all_boundaries.xml ├── all_boundaries_dark.css ├── all_boundaries_dark.sld ├── all_boundaries_dark.xml ├── all_boundaries_light.css ├── all_boundaries_light.sld ├── all_boundaries_light.xml ├── all_regions.css ├── all_regions.sld ├── all_regions.xml ├── all_regions_dark.css ├── all_regions_dark.sld ├── all_regions_dark.xml ├── all_regions_light.css ├── all_regions_light.sld ├── all_regions_light.xml ├── amenities.css ├── amenities.sld ├── amenities.xml ├── bathymetry_dark.css ├── bathymetry_dark.sld ├── bathymetry_dark.xml ├── bathymetry_light.css ├── bathymetry_light.sld ├── bathymetry_light.xml ├── boundaries.css ├── boundaries.sld ├── boundaries.xml ├── buildings.css ├── buildings.sld ├── buildings.xml ├── buildup.css ├── buildup.sld ├── buildup.xml ├── builtup_dark.css ├── builtup_dark.sld ├── builtup_dark.xml ├── builtup_light.css ├── builtup_light.sld ├── builtup_light.xml ├── coast_poly.css ├── coast_poly.sld ├── coast_poly.xml ├── coast_poly_dark.css ├── coast_poly_dark.sld ├── coast_poly_dark.xml ├── coast_poly_light.css ├── coast_poly_light.sld ├── coast_poly_light.xml ├── icesheet.css ├── icesheet.sld ├── icesheet.xml ├── icesheet_outlines.css ├── icesheet_outlines.sld ├── icesheet_outlines.xml ├── landusages.css ├── landusages.sld ├── landusages.xml ├── places.css ├── places.sld ├── places.xml ├── places_dark.css ├── places_dark.sld ├── places_dark.xml ├── places_light.css ├── places_light.sld ├── places_light.xml ├── places_light_labels.css.bak ├── populated_places.css ├── populated_places.sld ├── populated_places.xml ├── populated_places_dark.css ├── populated_places_dark.sld ├── populated_places_dark.xml ├── roads.css ├── roads.sld ├── roads.xml ├── simplified_water.css ├── simplified_water.sld ├── simplified_water.xml ├── states.css ├── states.sld ├── states.xml ├── states_dark.css ├── states_dark.sld ├── states_dark.xml ├── states_light.css ├── states_light.sld ├── states_light.xml ├── symbols │ ├── aerodrome.12.svg │ ├── allotments.png │ ├── alpinehut.p.16.png │ ├── alpinehut.p.16.svg │ ├── archaeological_site.svg │ ├── artwork.svg │ ├── atm.svg │ ├── bank.svg │ ├── bar.svg │ ├── beach.png │ ├── beach_coarse.png │ ├── bench.svg │ ├── bicycle_parking.svg │ ├── biergarten.svg │ ├── buddhist.svg │ ├── bus_station.n.16.png │ ├── bus_station.n.16.svg │ ├── bus_stop.12.svg │ ├── cafe.svg │ ├── camping.svg │ ├── car_wash.svg │ ├── caravan_park.svg │ ├── cave.svg │ ├── chalet.p.16.png │ ├── charging_station.svg │ ├── christian.9.svg │ ├── christian.svg │ ├── cinema.svg │ ├── cliff.png │ ├── cliff2.png │ ├── communications.svg │ ├── community_centre.svg │ ├── courthouse.svg │ ├── danger.png │ ├── dentist.svg │ ├── doctors.svg │ ├── dog_park.png │ ├── drinking_water.svg │ ├── elevator.12.svg │ ├── embankment.png │ ├── embassy.svg │ ├── emergency_phone.svg │ ├── entrance.10.svg │ ├── fast_food.svg │ ├── firestation.svg │ ├── ford.svg │ ├── forest.png │ ├── fountain.svg │ ├── fuel.svg │ ├── gate.svg │ ├── generating_patterns │ │ ├── bare_ground.md │ │ ├── bog.svg │ │ ├── forest.md │ │ ├── forest.svg │ │ ├── mangrove.svg │ │ ├── marsh.svg │ │ ├── quarry.md │ │ ├── quarry.svg │ │ ├── reed.svg │ │ ├── rock.svg │ │ ├── rock_overlay@2x.png │ │ ├── scree.svg │ │ ├── scree_overlay@2x.png │ │ ├── scrub.md │ │ ├── scrub.svg │ │ ├── swamp.svg │ │ ├── wetland.md │ │ ├── wetland.svg │ │ ├── wetland_bog@2x.png │ │ ├── wetland_generic@2x.png │ │ ├── wetland_mangrove@2x.png │ │ ├── wetland_marsh@2x.png │ │ ├── wetland_reed@2x.png │ │ └── wetland_swamp@2x.png │ ├── golf.p.20.png │ ├── grave_yard_christian.png │ ├── grave_yard_generic.png │ ├── grave_yard_jewish.png │ ├── grey_vertical_hatch.png │ ├── guest_house.p.16.png │ ├── helipad.16.svg │ ├── hinduist.svg │ ├── hospital.svg │ ├── hostel.svg │ ├── hotel.svg │ ├── hunting_stand.svg │ ├── information.12.svg │ ├── jewish.svg │ ├── level_crossing.svg │ ├── level_crossing2.svg │ ├── library.svg │ ├── liftgate.svg │ ├── lighthouse.svg │ ├── memorial.svg │ ├── military_red_hatch.png │ ├── mini_roundabout.svg │ ├── miniature_golf.p.20.png │ ├── monument.svg │ ├── motel.svg │ ├── motorcycle.svg │ ├── motorcycle_parking.svg │ ├── mud.png │ ├── museum.svg │ ├── muslim.svg │ ├── nightclub.svg │ ├── oneway-reverse.svg │ ├── oneway.svg │ ├── orchard.png │ ├── parking.svg │ ├── peak.svg │ ├── pharmacy.svg │ ├── picnic.svg │ ├── place │ │ ├── place-4-z7.svg │ │ ├── place-4.svg │ │ ├── place-6-z7.svg │ │ ├── place-6.svg │ │ ├── place-capital-6.svg │ │ └── place-capital-8.svg │ ├── place_of_worship.svg │ ├── playground.svg │ ├── police.svg │ ├── post_box.12.svg │ ├── post_office.svg │ ├── power_tower.svg │ ├── power_tower_small.svg │ ├── power_wind.svg │ ├── prison.svg │ ├── pub.svg │ ├── quarry.png │ ├── recycling.svg │ ├── reef.png │ ├── rental_bicycle.svg │ ├── rental_car.svg │ ├── restaurant.svg │ ├── rock_overlay.png │ ├── saddle.svg │ ├── scree_overlay.png │ ├── scrub.png │ ├── shelter.svg │ ├── shields │ │ ├── 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.svg │ │ ├── motorway_1x1_z16.svg │ │ ├── motorway_1x1_z18.svg │ │ ├── motorway_1x2.svg │ │ ├── motorway_1x2_z16.svg │ │ ├── motorway_1x2_z18.svg │ │ ├── motorway_1x3.svg │ │ ├── motorway_1x3_z16.svg │ │ ├── motorway_1x3_z18.svg │ │ ├── motorway_1x4.svg │ │ ├── motorway_1x4_z16.svg │ │ ├── motorway_1x4_z18.svg │ │ ├── motorway_2x1.svg │ │ ├── motorway_2x1_z16.svg │ │ ├── motorway_2x1_z18.svg │ │ ├── motorway_2x2.svg │ │ ├── motorway_2x2_z16.svg │ │ ├── motorway_2x2_z18.svg │ │ ├── motorway_2x3.svg │ │ ├── motorway_2x3_z16.svg │ │ ├── motorway_2x3_z18.svg │ │ ├── motorway_2x4.svg │ │ ├── motorway_2x4_z16.svg │ │ ├── motorway_2x4_z18.svg │ │ ├── motorway_3x1.svg │ │ ├── motorway_3x1_z16.svg │ │ ├── motorway_3x1_z18.svg │ │ ├── motorway_3x2.svg │ │ ├── motorway_3x2_z16.svg │ │ ├── motorway_3x2_z18.svg │ │ ├── motorway_3x3.svg │ │ ├── motorway_3x3_z16.svg │ │ ├── motorway_3x3_z18.svg │ │ ├── motorway_3x4.svg │ │ ├── motorway_3x4_z16.svg │ │ ├── motorway_3x4_z18.svg │ │ ├── motorway_4x1.svg │ │ ├── motorway_4x1_z16.svg │ │ ├── motorway_4x1_z18.svg │ │ ├── motorway_4x2.svg │ │ ├── motorway_4x2_z16.svg │ │ ├── motorway_4x2_z18.svg │ │ ├── motorway_4x3.svg │ │ ├── motorway_4x3_z16.svg │ │ ├── motorway_4x3_z18.svg │ │ ├── motorway_4x4.svg │ │ ├── motorway_4x4_z16.svg │ │ ├── motorway_4x4_z18.svg │ │ ├── motorway_5x1.svg │ │ ├── motorway_5x1_z16.svg │ │ ├── motorway_5x1_z18.svg │ │ ├── motorway_5x2.svg │ │ ├── motorway_5x2_z16.svg │ │ ├── motorway_5x2_z18.svg │ │ ├── motorway_5x3.svg │ │ ├── motorway_5x3_z16.svg │ │ ├── motorway_5x3_z18.svg │ │ ├── motorway_5x4.svg │ │ ├── motorway_5x4_z16.svg │ │ ├── motorway_5x4_z18.svg │ │ ├── motorway_6x1.svg │ │ ├── motorway_6x1_z16.svg │ │ ├── motorway_6x1_z18.svg │ │ ├── motorway_6x2.svg │ │ ├── motorway_6x2_z16.svg │ │ ├── motorway_6x2_z18.svg │ │ ├── motorway_6x3.svg │ │ ├── motorway_6x3_z16.svg │ │ ├── motorway_6x3_z18.svg │ │ ├── motorway_6x4.svg │ │ ├── motorway_6x4_z16.svg │ │ ├── motorway_6x4_z18.svg │ │ ├── motorway_7x1.svg │ │ ├── motorway_7x1_z16.svg │ │ ├── motorway_7x1_z18.svg │ │ ├── motorway_7x2.svg │ │ ├── motorway_7x2_z16.svg │ │ ├── motorway_7x2_z18.svg │ │ ├── motorway_7x3.svg │ │ ├── motorway_7x3_z16.svg │ │ ├── motorway_7x3_z18.svg │ │ ├── motorway_7x4.svg │ │ ├── motorway_7x4_z16.svg │ │ ├── motorway_7x4_z18.svg │ │ ├── motorway_8x1.svg │ │ ├── motorway_8x1_z16.svg │ │ ├── motorway_8x1_z18.svg │ │ ├── motorway_8x2.svg │ │ ├── motorway_8x2_z16.svg │ │ ├── motorway_8x2_z18.svg │ │ ├── motorway_8x3.svg │ │ ├── motorway_8x3_z16.svg │ │ ├── motorway_8x3_z18.svg │ │ ├── motorway_8x4.svg │ │ ├── motorway_8x4_z16.svg │ │ ├── motorway_8x4_z18.svg │ │ ├── motorway_9x1.svg │ │ ├── motorway_9x1_z16.svg │ │ ├── motorway_9x1_z18.svg │ │ ├── motorway_9x2.svg │ │ ├── motorway_9x2_z16.svg │ │ ├── motorway_9x2_z18.svg │ │ ├── motorway_9x3.svg │ │ ├── motorway_9x3_z16.svg │ │ ├── motorway_9x3_z18.svg │ │ ├── motorway_9x4.svg │ │ ├── motorway_9x4_z16.svg │ │ ├── motorway_9x4_z18.svg │ │ ├── primary_10x1.svg │ │ ├── primary_10x1_z16.svg │ │ ├── primary_10x1_z18.svg │ │ ├── primary_10x2.svg │ │ ├── primary_10x2_z16.svg │ │ ├── primary_10x2_z18.svg │ │ ├── primary_10x3.svg │ │ ├── primary_10x3_z16.svg │ │ ├── primary_10x3_z18.svg │ │ ├── primary_10x4.svg │ │ ├── primary_10x4_z16.svg │ │ ├── primary_10x4_z18.svg │ │ ├── primary_11x1.svg │ │ ├── primary_11x1_z16.svg │ │ ├── primary_11x1_z18.svg │ │ ├── primary_11x2.svg │ │ ├── primary_11x2_z16.svg │ │ ├── primary_11x2_z18.svg │ │ ├── primary_11x3.svg │ │ ├── primary_11x3_z16.svg │ │ ├── primary_11x3_z18.svg │ │ ├── primary_11x4.svg │ │ ├── primary_11x4_z16.svg │ │ ├── primary_11x4_z18.svg │ │ ├── primary_1x1.svg │ │ ├── primary_1x1_z16.svg │ │ ├── primary_1x1_z18.svg │ │ ├── primary_1x2.svg │ │ ├── primary_1x2_z16.svg │ │ ├── primary_1x2_z18.svg │ │ ├── primary_1x3.svg │ │ ├── primary_1x3_z16.svg │ │ ├── primary_1x3_z18.svg │ │ ├── primary_1x4.svg │ │ ├── primary_1x4_z16.svg │ │ ├── primary_1x4_z18.svg │ │ ├── primary_2x1.svg │ │ ├── primary_2x1_z16.svg │ │ ├── primary_2x1_z18.svg │ │ ├── primary_2x2.svg │ │ ├── primary_2x2_z16.svg │ │ ├── primary_2x2_z18.svg │ │ ├── primary_2x3.svg │ │ ├── primary_2x3_z16.svg │ │ ├── primary_2x3_z18.svg │ │ ├── primary_2x4.svg │ │ ├── primary_2x4_z16.svg │ │ ├── primary_2x4_z18.svg │ │ ├── primary_3x1.svg │ │ ├── primary_3x1_z16.svg │ │ ├── primary_3x1_z18.svg │ │ ├── primary_3x2.svg │ │ ├── primary_3x2_z16.svg │ │ ├── primary_3x2_z18.svg │ │ ├── primary_3x3.svg │ │ ├── primary_3x3_z16.svg │ │ ├── primary_3x3_z18.svg │ │ ├── primary_3x4.svg │ │ ├── primary_3x4_z16.svg │ │ ├── primary_3x4_z18.svg │ │ ├── primary_4x1.svg │ │ ├── primary_4x1_z16.svg │ │ ├── primary_4x1_z18.svg │ │ ├── primary_4x2.svg │ │ ├── primary_4x2_z16.svg │ │ ├── primary_4x2_z18.svg │ │ ├── primary_4x3.svg │ │ ├── primary_4x3_z16.svg │ │ ├── primary_4x3_z18.svg │ │ ├── primary_4x4.svg │ │ ├── primary_4x4_z16.svg │ │ ├── primary_4x4_z18.svg │ │ ├── primary_5x1.svg │ │ ├── primary_5x1_z16.svg │ │ ├── primary_5x1_z18.svg │ │ ├── primary_5x2.svg │ │ ├── primary_5x2_z16.svg │ │ ├── primary_5x2_z18.svg │ │ ├── primary_5x3.svg │ │ ├── primary_5x3_z16.svg │ │ ├── primary_5x3_z18.svg │ │ ├── primary_5x4.svg │ │ ├── primary_5x4_z16.svg │ │ ├── primary_5x4_z18.svg │ │ ├── primary_6x1.svg │ │ ├── primary_6x1_z16.svg │ │ ├── primary_6x1_z18.svg │ │ ├── primary_6x2.svg │ │ ├── primary_6x2_z16.svg │ │ ├── primary_6x2_z18.svg │ │ ├── primary_6x3.svg │ │ ├── primary_6x3_z16.svg │ │ ├── primary_6x3_z18.svg │ │ ├── primary_6x4.svg │ │ ├── primary_6x4_z16.svg │ │ ├── primary_6x4_z18.svg │ │ ├── primary_7x1.svg │ │ ├── primary_7x1_z16.svg │ │ ├── primary_7x1_z18.svg │ │ ├── primary_7x2.svg │ │ ├── primary_7x2_z16.svg │ │ ├── primary_7x2_z18.svg │ │ ├── primary_7x3.svg │ │ ├── primary_7x3_z16.svg │ │ ├── primary_7x3_z18.svg │ │ ├── primary_7x4.svg │ │ ├── primary_7x4_z16.svg │ │ ├── primary_7x4_z18.svg │ │ ├── primary_8x1.svg │ │ ├── primary_8x1_z16.svg │ │ ├── primary_8x1_z18.svg │ │ ├── primary_8x2.svg │ │ ├── primary_8x2_z16.svg │ │ ├── primary_8x2_z18.svg │ │ ├── primary_8x3.svg │ │ ├── primary_8x3_z16.svg │ │ ├── primary_8x3_z18.svg │ │ ├── primary_8x4.svg │ │ ├── primary_8x4_z16.svg │ │ ├── primary_8x4_z18.svg │ │ ├── primary_9x1.svg │ │ ├── primary_9x1_z16.svg │ │ ├── primary_9x1_z18.svg │ │ ├── primary_9x2.svg │ │ ├── primary_9x2_z16.svg │ │ ├── primary_9x2_z18.svg │ │ ├── primary_9x3.svg │ │ ├── primary_9x3_z16.svg │ │ ├── primary_9x3_z18.svg │ │ ├── primary_9x4.svg │ │ ├── primary_9x4_z16.svg │ │ ├── primary_9x4_z18.svg │ │ ├── secondary_10x1.svg │ │ ├── secondary_10x1_z16.svg │ │ ├── secondary_10x1_z18.svg │ │ ├── secondary_10x2.svg │ │ ├── secondary_10x2_z16.svg │ │ ├── secondary_10x2_z18.svg │ │ ├── secondary_10x3.svg │ │ ├── secondary_10x3_z16.svg │ │ ├── secondary_10x3_z18.svg │ │ ├── secondary_10x4.svg │ │ ├── secondary_10x4_z16.svg │ │ ├── secondary_10x4_z18.svg │ │ ├── secondary_11x1.svg │ │ ├── secondary_11x1_z16.svg │ │ ├── secondary_11x1_z18.svg │ │ ├── secondary_11x2.svg │ │ ├── secondary_11x2_z16.svg │ │ ├── secondary_11x2_z18.svg │ │ ├── secondary_11x3.svg │ │ ├── secondary_11x3_z16.svg │ │ ├── secondary_11x3_z18.svg │ │ ├── secondary_11x4.svg │ │ ├── secondary_11x4_z16.svg │ │ ├── secondary_11x4_z18.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 │ │ ├── secondary_5x4_z18.svg │ │ ├── secondary_6x1.svg │ │ ├── secondary_6x1_z16.svg │ │ ├── secondary_6x1_z18.svg │ │ ├── secondary_6x2.svg │ │ ├── secondary_6x2_z16.svg │ │ ├── secondary_6x2_z18.svg │ │ ├── secondary_6x3.svg │ │ ├── secondary_6x3_z16.svg │ │ ├── secondary_6x3_z18.svg │ │ ├── secondary_6x4.svg │ │ ├── secondary_6x4_z16.svg │ │ ├── secondary_6x4_z18.svg │ │ ├── secondary_7x1.svg │ │ ├── secondary_7x1_z16.svg │ │ ├── secondary_7x1_z18.svg │ │ ├── secondary_7x2.svg │ │ ├── secondary_7x2_z16.svg │ │ ├── secondary_7x2_z18.svg │ │ ├── secondary_7x3.svg │ │ ├── secondary_7x3_z16.svg │ │ ├── secondary_7x3_z18.svg │ │ ├── secondary_7x4.svg │ │ ├── secondary_7x4_z16.svg │ │ ├── secondary_7x4_z18.svg │ │ ├── secondary_8x1.svg │ │ ├── secondary_8x1_z16.svg │ │ ├── secondary_8x1_z18.svg │ │ ├── secondary_8x2.svg │ │ ├── secondary_8x2_z16.svg │ │ ├── secondary_8x2_z18.svg │ │ ├── secondary_8x3.svg │ │ ├── secondary_8x3_z16.svg │ │ ├── secondary_8x3_z18.svg │ │ ├── secondary_8x4.svg │ │ ├── secondary_8x4_z16.svg │ │ ├── secondary_8x4_z18.svg │ │ ├── secondary_9x1.svg │ │ ├── secondary_9x1_z16.svg │ │ ├── secondary_9x1_z18.svg │ │ ├── secondary_9x2.svg │ │ ├── secondary_9x2_z16.svg │ │ ├── secondary_9x2_z18.svg │ │ ├── secondary_9x3.svg │ │ ├── secondary_9x3_z16.svg │ │ ├── secondary_9x3_z18.svg │ │ ├── secondary_9x4.svg │ │ ├── secondary_9x4_z16.svg │ │ ├── secondary_9x4_z18.svg │ │ ├── tertiary_10x1.svg │ │ ├── tertiary_10x1_z16.svg │ │ ├── tertiary_10x1_z18.svg │ │ ├── tertiary_10x2.svg │ │ ├── tertiary_10x2_z16.svg │ │ ├── tertiary_10x2_z18.svg │ │ ├── tertiary_10x3.svg │ │ ├── tertiary_10x3_z16.svg │ │ ├── tertiary_10x3_z18.svg │ │ ├── tertiary_10x4.svg │ │ ├── tertiary_10x4_z16.svg │ │ ├── tertiary_10x4_z18.svg │ │ ├── tertiary_11x1.svg │ │ ├── tertiary_11x1_z16.svg │ │ ├── tertiary_11x1_z18.svg │ │ ├── tertiary_11x2.svg │ │ ├── tertiary_11x2_z16.svg │ │ ├── tertiary_11x2_z18.svg │ │ ├── tertiary_11x3.svg │ │ ├── tertiary_11x3_z16.svg │ │ ├── tertiary_11x3_z18.svg │ │ ├── tertiary_11x4.svg │ │ ├── tertiary_11x4_z16.svg │ │ ├── tertiary_11x4_z18.svg │ │ ├── tertiary_1x1.svg │ │ ├── tertiary_1x1_z16.svg │ │ ├── tertiary_1x1_z18.svg │ │ ├── tertiary_1x2.svg │ │ ├── tertiary_1x2_z16.svg │ │ ├── tertiary_1x2_z18.svg │ │ ├── tertiary_1x3.svg │ │ ├── tertiary_1x3_z16.svg │ │ ├── tertiary_1x3_z18.svg │ │ ├── tertiary_1x4.svg │ │ ├── tertiary_1x4_z16.svg │ │ ├── tertiary_1x4_z18.svg │ │ ├── tertiary_2x1.svg │ │ ├── tertiary_2x1_z16.svg │ │ ├── tertiary_2x1_z18.svg │ │ ├── tertiary_2x2.svg │ │ ├── tertiary_2x2_z16.svg │ │ ├── tertiary_2x2_z18.svg │ │ ├── tertiary_2x3.svg │ │ ├── tertiary_2x3_z16.svg │ │ ├── tertiary_2x3_z18.svg │ │ ├── tertiary_2x4.svg │ │ ├── tertiary_2x4_z16.svg │ │ ├── tertiary_2x4_z18.svg │ │ ├── tertiary_3x1.svg │ │ ├── tertiary_3x1_z16.svg │ │ ├── tertiary_3x1_z18.svg │ │ ├── tertiary_3x2.svg │ │ ├── tertiary_3x2_z16.svg │ │ ├── tertiary_3x2_z18.svg │ │ ├── tertiary_3x3.svg │ │ ├── tertiary_3x3_z16.svg │ │ ├── tertiary_3x3_z18.svg │ │ ├── tertiary_3x4.svg │ │ ├── tertiary_3x4_z16.svg │ │ ├── tertiary_3x4_z18.svg │ │ ├── tertiary_4x1.svg │ │ ├── tertiary_4x1_z16.svg │ │ ├── tertiary_4x1_z18.svg │ │ ├── tertiary_4x2.svg │ │ ├── tertiary_4x2_z16.svg │ │ ├── tertiary_4x2_z18.svg │ │ ├── tertiary_4x3.svg │ │ ├── tertiary_4x3_z16.svg │ │ ├── tertiary_4x3_z18.svg │ │ ├── tertiary_4x4.svg │ │ ├── tertiary_4x4_z16.svg │ │ ├── tertiary_4x4_z18.svg │ │ ├── tertiary_5x1.svg │ │ ├── tertiary_5x1_z16.svg │ │ ├── tertiary_5x1_z18.svg │ │ ├── tertiary_5x2.svg │ │ ├── tertiary_5x2_z16.svg │ │ ├── tertiary_5x2_z18.svg │ │ ├── tertiary_5x3.svg │ │ ├── tertiary_5x3_z16.svg │ │ ├── tertiary_5x3_z18.svg │ │ ├── tertiary_5x4.svg │ │ ├── tertiary_5x4_z16.svg │ │ ├── tertiary_5x4_z18.svg │ │ ├── tertiary_6x1.svg │ │ ├── tertiary_6x1_z16.svg │ │ ├── tertiary_6x1_z18.svg │ │ ├── tertiary_6x2.svg │ │ ├── tertiary_6x2_z16.svg │ │ ├── tertiary_6x2_z18.svg │ │ ├── tertiary_6x3.svg │ │ ├── tertiary_6x3_z16.svg │ │ ├── tertiary_6x3_z18.svg │ │ ├── tertiary_6x4.svg │ │ ├── tertiary_6x4_z16.svg │ │ ├── tertiary_6x4_z18.svg │ │ ├── tertiary_7x1.svg │ │ ├── tertiary_7x1_z16.svg │ │ ├── tertiary_7x1_z18.svg │ │ ├── tertiary_7x2.svg │ │ ├── tertiary_7x2_z16.svg │ │ ├── tertiary_7x2_z18.svg │ │ ├── tertiary_7x3.svg │ │ ├── tertiary_7x3_z16.svg │ │ ├── tertiary_7x3_z18.svg │ │ ├── tertiary_7x4.svg │ │ ├── tertiary_7x4_z16.svg │ │ ├── tertiary_7x4_z18.svg │ │ ├── tertiary_8x1.svg │ │ ├── tertiary_8x1_z16.svg │ │ ├── tertiary_8x1_z18.svg │ │ ├── tertiary_8x2.svg │ │ ├── tertiary_8x2_z16.svg │ │ ├── tertiary_8x2_z18.svg │ │ ├── tertiary_8x3.svg │ │ ├── tertiary_8x3_z16.svg │ │ ├── tertiary_8x3_z18.svg │ │ ├── tertiary_8x4.svg │ │ ├── tertiary_8x4_z16.svg │ │ ├── tertiary_8x4_z18.svg │ │ ├── tertiary_9x1.svg │ │ ├── tertiary_9x1_z16.svg │ │ ├── tertiary_9x1_z18.svg │ │ ├── tertiary_9x2.svg │ │ ├── tertiary_9x2_z16.svg │ │ ├── tertiary_9x2_z18.svg │ │ ├── tertiary_9x3.svg │ │ ├── tertiary_9x3_z16.svg │ │ ├── tertiary_9x3_z18.svg │ │ ├── tertiary_9x4.svg │ │ ├── tertiary_9x4_z16.svg │ │ ├── tertiary_9x4_z18.svg │ │ ├── trunk_10x1.svg │ │ ├── trunk_10x1_z16.svg │ │ ├── trunk_10x1_z18.svg │ │ ├── trunk_10x2.svg │ │ ├── trunk_10x2_z16.svg │ │ ├── trunk_10x2_z18.svg │ │ ├── trunk_10x3.svg │ │ ├── trunk_10x3_z16.svg │ │ ├── trunk_10x3_z18.svg │ │ ├── trunk_10x4.svg │ │ ├── trunk_10x4_z16.svg │ │ ├── trunk_10x4_z18.svg │ │ ├── trunk_11x1.svg │ │ ├── trunk_11x1_z16.svg │ │ ├── trunk_11x1_z18.svg │ │ ├── trunk_11x2.svg │ │ ├── trunk_11x2_z16.svg │ │ ├── trunk_11x2_z18.svg │ │ ├── trunk_11x3.svg │ │ ├── trunk_11x3_z16.svg │ │ ├── trunk_11x3_z18.svg │ │ ├── trunk_11x4.svg │ │ ├── trunk_11x4_z16.svg │ │ ├── trunk_11x4_z18.svg │ │ ├── trunk_1x1.svg │ │ ├── trunk_1x1_z16.svg │ │ ├── trunk_1x1_z18.svg │ │ ├── trunk_1x2.svg │ │ ├── trunk_1x2_z16.svg │ │ ├── trunk_1x2_z18.svg │ │ ├── trunk_1x3.svg │ │ ├── trunk_1x3_z16.svg │ │ ├── trunk_1x3_z18.svg │ │ ├── trunk_1x4.svg │ │ ├── trunk_1x4_z16.svg │ │ ├── trunk_1x4_z18.svg │ │ ├── trunk_2x1.svg │ │ ├── trunk_2x1_z16.svg │ │ ├── trunk_2x1_z18.svg │ │ ├── trunk_2x2.svg │ │ ├── trunk_2x2_z16.svg │ │ ├── trunk_2x2_z18.svg │ │ ├── trunk_2x3.svg │ │ ├── trunk_2x3_z16.svg │ │ ├── trunk_2x3_z18.svg │ │ ├── trunk_2x4.svg │ │ ├── trunk_2x4_z16.svg │ │ ├── trunk_2x4_z18.svg │ │ ├── trunk_3x1.svg │ │ ├── trunk_3x1_z16.svg │ │ ├── trunk_3x1_z18.svg │ │ ├── trunk_3x2.svg │ │ ├── trunk_3x2_z16.svg │ │ ├── trunk_3x2_z18.svg │ │ ├── trunk_3x3.svg │ │ ├── trunk_3x3_z16.svg │ │ ├── trunk_3x3_z18.svg │ │ ├── trunk_3x4.svg │ │ ├── trunk_3x4_z16.svg │ │ ├── trunk_3x4_z18.svg │ │ ├── trunk_4x1.svg │ │ ├── trunk_4x1_z16.svg │ │ ├── trunk_4x1_z18.svg │ │ ├── trunk_4x2.svg │ │ ├── trunk_4x2_z16.svg │ │ ├── trunk_4x2_z18.svg │ │ ├── trunk_4x3.svg │ │ ├── trunk_4x3_z16.svg │ │ ├── trunk_4x3_z18.svg │ │ ├── trunk_4x4.svg │ │ ├── trunk_4x4_z16.svg │ │ ├── trunk_4x4_z18.svg │ │ ├── trunk_5x1.svg │ │ ├── trunk_5x1_z16.svg │ │ ├── trunk_5x1_z18.svg │ │ ├── trunk_5x2.svg │ │ ├── trunk_5x2_z16.svg │ │ ├── trunk_5x2_z18.svg │ │ ├── trunk_5x3.svg │ │ ├── trunk_5x3_z16.svg │ │ ├── trunk_5x3_z18.svg │ │ ├── trunk_5x4.svg │ │ ├── trunk_5x4_z16.svg │ │ ├── trunk_5x4_z18.svg │ │ ├── trunk_6x1.svg │ │ ├── trunk_6x1_z16.svg │ │ ├── trunk_6x1_z18.svg │ │ ├── trunk_6x2.svg │ │ ├── trunk_6x2_z16.svg │ │ ├── trunk_6x2_z18.svg │ │ ├── trunk_6x3.svg │ │ ├── trunk_6x3_z16.svg │ │ ├── trunk_6x3_z18.svg │ │ ├── trunk_6x4.svg │ │ ├── trunk_6x4_z16.svg │ │ ├── trunk_6x4_z18.svg │ │ ├── trunk_7x1.svg │ │ ├── trunk_7x1_z16.svg │ │ ├── trunk_7x1_z18.svg │ │ ├── trunk_7x2.svg │ │ ├── trunk_7x2_z16.svg │ │ ├── trunk_7x2_z18.svg │ │ ├── trunk_7x3.svg │ │ ├── trunk_7x3_z16.svg │ │ ├── trunk_7x3_z18.svg │ │ ├── trunk_7x4.svg │ │ ├── trunk_7x4_z16.svg │ │ ├── trunk_7x4_z18.svg │ │ ├── trunk_8x1.svg │ │ ├── trunk_8x1_z16.svg │ │ ├── trunk_8x1_z18.svg │ │ ├── trunk_8x2.svg │ │ ├── trunk_8x2_z16.svg │ │ ├── trunk_8x2_z18.svg │ │ ├── trunk_8x3.svg │ │ ├── trunk_8x3_z16.svg │ │ ├── trunk_8x3_z18.svg │ │ ├── trunk_8x4.svg │ │ ├── trunk_8x4_z16.svg │ │ ├── trunk_8x4_z18.svg │ │ ├── trunk_9x1.svg │ │ ├── trunk_9x1_z16.svg │ │ ├── trunk_9x1_z18.svg │ │ ├── trunk_9x2.svg │ │ ├── trunk_9x2_z16.svg │ │ ├── trunk_9x2_z18.svg │ │ ├── trunk_9x3.svg │ │ ├── trunk_9x3_z16.svg │ │ ├── trunk_9x3_z18.svg │ │ ├── trunk_9x4.svg │ │ ├── trunk_9x4_z16.svg │ │ └── trunk_9x4_z18.svg │ ├── shintoist.svg │ ├── shop │ │ ├── alcohol.svg │ │ ├── art.svg │ │ ├── bag.svg │ │ ├── bakery.svg │ │ ├── beauty.svg │ │ ├── bed.svg │ │ ├── beverages.svg │ │ ├── bicycle.svg │ │ ├── butcher.png │ │ ├── butcher.svg │ │ ├── car.svg │ │ ├── car_parts.svg │ │ ├── car_repair.svg │ │ ├── chemist.svg │ │ ├── clothes.svg │ │ ├── coffee.svg │ │ ├── computer.svg │ │ ├── confectionery.svg │ │ ├── convenience.svg │ │ ├── copyshop.svg │ │ ├── dairy.svg │ │ ├── deli.svg │ │ ├── department_store.svg │ │ ├── diy.svg │ │ ├── electronics.svg │ │ ├── florist.svg │ │ ├── furniture.svg │ │ ├── garden_centre.svg │ │ ├── gift.svg │ │ ├── greengrocer.svg │ │ ├── hairdresser.svg │ │ ├── hifi.svg │ │ ├── ice_cream.svg │ │ ├── jewelry.svg │ │ ├── laundry.svg │ │ ├── medical_supply.svg │ │ ├── mobile_phone.svg │ │ ├── music.svg │ │ ├── musical_instrument.svg │ │ ├── newsagent.svg │ │ ├── optician.svg │ │ ├── outdoor.svg │ │ ├── perfumery.svg │ │ ├── pet.svg │ │ ├── photo.svg │ │ ├── seafood.svg │ │ ├── shoes.svg │ │ ├── sports.svg │ │ ├── stationery.svg │ │ ├── supermarket.svg │ │ ├── tea.svg │ │ ├── tobacco.svg │ │ ├── toys.svg │ │ ├── travel_agency.svg │ │ ├── variety_store.svg │ │ └── video_games.svg │ ├── sikhist.svg │ ├── social_facility.svg │ ├── spring.svg │ ├── square.svg │ ├── taoist.svg │ ├── taxi.svg │ ├── telephone.svg │ ├── theatre.svg │ ├── toilets.svg │ ├── town_hall.svg │ ├── traffic_light.16.svg │ ├── transport_slipway.p.20.png │ ├── veterinary.svg │ ├── viewpoint.svg │ ├── vineyard.png │ ├── waste_basket.10.svg │ ├── water_park.svg │ ├── water_tower.svg │ ├── wetland.png │ ├── wetland_bog.png │ ├── wetland_mangrove.png │ ├── wetland_marsh.png │ ├── wetland_reed.png │ ├── wetland_swamp.png │ ├── wilderness_hut.svg │ └── windmill.svg ├── transport_areas.css ├── transport_areas.sld ├── transport_areas.xml ├── transport_points.css ├── transport_points.sld ├── transport_points.xml ├── water.css ├── water.sld ├── water.xml ├── waterareas.css ├── waterareas.sld ├── waterareas.xml ├── waterareas_dark.css ├── waterareas_dark.sld ├── waterareas_dark.xml ├── waterareas_dark_labels.css ├── waterareas_dark_labels.sld ├── waterareas_dark_labels.xml ├── waterareas_light.css ├── waterareas_light.sld ├── waterareas_light.xml ├── waterareas_light_labels.css ├── waterareas_light_labels.sld ├── waterareas_light_labels.xml ├── waterways.css ├── waterways.sld ├── waterways.xml ├── waterways_dark.css ├── waterways_dark.sld ├── waterways_dark.xml ├── waterways_dark_labels.css ├── waterways_dark_labels.sld ├── waterways_dark_labels.xml ├── waterways_light.css ├── waterways_light.sld ├── waterways_light.xml ├── waterways_light_labels.css ├── waterways_light_labels.sld ├── waterways_light_labels.xml ├── world.css ├── world.sld ├── world.xml ├── world_dark.css ├── world_dark.sld ├── world_dark.xml ├── world_light.css ├── world_light.sld └── world_light.xml └── workspace.xml /data/.gitignore: -------------------------------------------------------------------------------- 1 | osm-lowres.gpkg -------------------------------------------------------------------------------- /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. -------------------------------------------------------------------------------- /gwc/metadata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/gwc/metadata.properties -------------------------------------------------------------------------------- /imposm/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | 3 | -------------------------------------------------------------------------------- /imposm/images/win-create-db-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/imposm/images/win-create-db-dialog.png -------------------------------------------------------------------------------- /imposm/images/win-create-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/imposm/images/win-create-db.png -------------------------------------------------------------------------------- /imposm/images/win-restore-dialog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/imposm/images/win-restore-dialog-1.png -------------------------------------------------------------------------------- /imposm/images/win-restore-dialog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/imposm/images/win-restore-dialog-2.png -------------------------------------------------------------------------------- /imposm/images/win-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/imposm/images/win-restore.png -------------------------------------------------------------------------------- /logging.xml: -------------------------------------------------------------------------------- 1 | 2 | PRODUCTION_LOGGING.properties 3 | logs/geoserver.log 4 | true 5 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | geoserver*.log* -------------------------------------------------------------------------------- /map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/map.png -------------------------------------------------------------------------------- /security/auth/default/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff0 3 | default 4 | org.geoserver.security.auth.UsernamePasswordAuthenticationProvider 5 | default 6 | -------------------------------------------------------------------------------- /security/filter/anonymous/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff7 3 | anonymous 4 | org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter 5 | -------------------------------------------------------------------------------- /security/filter/basic/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ffb 3 | basic 4 | org.geoserver.security.filter.GeoServerBasicAuthenticationFilter 5 | true 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/filter/exception/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff2 3 | exception 4 | org.geoserver.security.filter.GeoServerExceptionTranslationFilter 5 | -------------------------------------------------------------------------------- /security/filter/formLogout/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff3 3 | formLogout 4 | org.geoserver.security.filter.GeoServerLogoutFilter 5 | /web/ 6 | -------------------------------------------------------------------------------- /security/filter/rememberme/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff6 3 | rememberme 4 | org.geoserver.security.filter.GeoServerRememberMeAuthenticationFilter 5 | -------------------------------------------------------------------------------- /security/filter/sslFilter/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7fee 3 | sslFilter 4 | org.geoserver.security.filter.GeoServerSSLFilter 5 | 443 6 | -------------------------------------------------------------------------------- /security/geoserver.jceks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/security/geoserver.jceks -------------------------------------------------------------------------------- /security/masterpw.digest: -------------------------------------------------------------------------------- 1 | digest1:SOtESJPwYkKX8/fErV1s5cwqTLHhG9xjbmy5nXZIKY0qsp0MeuF/TRYG5TJRnAAN -------------------------------------------------------------------------------- /security/masterpw.xml: -------------------------------------------------------------------------------- 1 | 2 | default 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /security/masterpw/default/passwd: -------------------------------------------------------------------------------- 1 | 3Gu9U3xKK1DdKLlI3KiqxXsFcetfUA54 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/structure.png -------------------------------------------------------------------------------- /styles/generic.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/line.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/point.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/polygon.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/raster.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_projections/epsg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/user_projections/epsg.properties -------------------------------------------------------------------------------- /workspaces/default.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl-41697926:164a2136a44:-7fe4 3 | osm 4 | -------------------------------------------------------------------------------- /workspaces/osm/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl-41697926:164a2136a44:-7fe3 3 | osm 4 | http://geoserver.org/osm 5 | false 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/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_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/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/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/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/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/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 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/buildup.css: -------------------------------------------------------------------------------- 1 | /* @title Built up */ 2 | [@scale < 3000000][@scale > 800000] { 3 | fill: #ddd; 4 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/builtup_dark.css: -------------------------------------------------------------------------------- 1 | /* @title Built up */ 2 | [@scale < 3M] { 3 | fill: #828282; 4 | stroke: #727272 5 | } -------------------------------------------------------------------------------- /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/coast_poly.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800000] { 2 | fill: #f2efe9; 3 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/coast_poly_dark.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800k] { 2 | fill: #888888; 3 | } -------------------------------------------------------------------------------- /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/icesheet.css: -------------------------------------------------------------------------------- 1 | [@sd < 12500000][@sd > 250k] { 2 | fill: #ddecec; 3 | } -------------------------------------------------------------------------------- /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/simplified_water.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | stroke: #aad3df; 3 | fill: #aad3df; 4 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/allotments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/allotments.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/alpinehut.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/alpinehut.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/beach.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/beach_coarse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/beach_coarse.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/bus_station.n.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/bus_station.n.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/chalet.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/chalet.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/cliff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/cliff.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/cliff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/cliff2.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/danger.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/dog_park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/dog_park.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/embankment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/embankment.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/forest.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/rock_overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/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/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/generating_patterns/scree_overlay@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_bog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/generating_patterns/wetland_bog@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/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/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/generating_patterns/wetland_mangrove@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/generating_patterns/wetland_marsh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/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/f8e12b01a2d8a24c763f321e204b546482f5be90/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/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/generating_patterns/wetland_swamp@2x.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/golf.p.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/golf.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_christian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/grave_yard_christian.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/grave_yard_generic.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grave_yard_jewish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/grave_yard_jewish.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/grey_vertical_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/grey_vertical_hatch.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/guest_house.p.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/guest_house.p.16.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/liftgate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/military_red_hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/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/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/miniature_golf.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/mud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/mud.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/orchard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/orchard.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/quarry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/quarry.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/reef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/reef.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/rock_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/rock_overlay.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/scree_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/scree_overlay.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/scrub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/scrub.png -------------------------------------------------------------------------------- /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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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/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/shop/butcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/shop/butcher.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/transport_slipway.p.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/transport_slipway.p.20.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/vineyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/vineyard.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_bog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland_bog.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_mangrove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland_mangrove.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_marsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland_marsh.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland_reed.png -------------------------------------------------------------------------------- /workspaces/osm/styles/symbols/wetland_swamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geosolutions-it/osm-styles/f8e12b01a2d8a24c763f321e204b546482f5be90/workspaces/osm/styles/symbols/wetland_swamp.png -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/water.css: -------------------------------------------------------------------------------- 1 | [@sd <= 800k] { 2 | stroke: #aad3df; 3 | fill: #aad3df; 4 | } -------------------------------------------------------------------------------- /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/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/world.css: -------------------------------------------------------------------------------- 1 | [@sd > 800000] { 2 | fill: #f2efe9; 3 | [@sd < 100M] { 4 | stroke: #5ab0c9; 5 | stroke-width: 0.1; 6 | }; 7 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/world_dark.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | fill: #888888; 3 | } -------------------------------------------------------------------------------- /workspaces/osm/styles/world_light.css: -------------------------------------------------------------------------------- 1 | [@sd > 800k] { 2 | fill: #F2F2F0; 3 | stroke: #F2F2F0; 4 | stroke-width: 0.1; 5 | } -------------------------------------------------------------------------------- /workspaces/osm/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl-41697926:164a2136a44:-7fe4 3 | osm 4 | false 5 | --------------------------------------------------------------------------------