Compare commits
merge into: OpenStreetBrowser:master
OpenStreetBrowser:aboriginal_lands
OpenStreetBrowser:bug-43
OpenStreetBrowser:buildings
OpenStreetBrowser:climbing
OpenStreetBrowser:cycle_infrastructure
OpenStreetBrowser:cycleway
OpenStreetBrowser:filter
OpenStreetBrowser:fitness_trail
OpenStreetBrowser:fossil
OpenStreetBrowser:heritage
OpenStreetBrowser:leisure-restruct
OpenStreetBrowser:master
OpenStreetBrowser:maxspeed
OpenStreetBrowser:office
OpenStreetBrowser:osm-qa
OpenStreetBrowser:parking-lanes
OpenStreetBrowser:pattern
OpenStreetBrowser:pedestrian
OpenStreetBrowser:places
OpenStreetBrowser:pt
OpenStreetBrowser:railway-electrification
OpenStreetBrowser:railway-rails
OpenStreetBrowser:shop-bulk_purchase
OpenStreetBrowser:sidewalks-category
pull from: OpenStreetBrowser:shop-bulk_purchase
OpenStreetBrowser:aboriginal_lands
OpenStreetBrowser:bug-43
OpenStreetBrowser:buildings
OpenStreetBrowser:climbing
OpenStreetBrowser:cycle_infrastructure
OpenStreetBrowser:cycleway
OpenStreetBrowser:filter
OpenStreetBrowser:fitness_trail
OpenStreetBrowser:fossil
OpenStreetBrowser:heritage
OpenStreetBrowser:leisure-restruct
OpenStreetBrowser:master
OpenStreetBrowser:maxspeed
OpenStreetBrowser:office
OpenStreetBrowser:osm-qa
OpenStreetBrowser:parking-lanes
OpenStreetBrowser:pattern
OpenStreetBrowser:pedestrian
OpenStreetBrowser:places
OpenStreetBrowser:pt
OpenStreetBrowser:railway-electrification
OpenStreetBrowser:railway-rails
OpenStreetBrowser:shop-bulk_purchase
OpenStreetBrowser:sidewalks-category
328 Commits
master
...
shop-bulk_
99 changed files with 5411 additions and 980 deletions
-
4administrative.json
-
13agriculture.json
-
2alternative_amenities.json
-
3alternative_routes.json
-
27buildings-entrances.json
-
40buildings-figure-ground.json
-
112buildings-height.json
-
145buildings-start_date.json
-
243buildings-type.json
-
51buildings.json
-
8car_amenities.json
-
5car_furniture.json
-
89car_maxspeed.json
-
66car_routes.json
-
46children.json
-
44coal.json
-
82communication.json
-
5construction.json
-
85craft.json
-
80culture.json
-
11culture_religion.json
-
18cycle_amenities.json
-
162cycle_routes.json
-
29detailsBody.html
-
72education.json
-
8electric_power.json
-
80emergency.json
-
71financial.json
-
70gastro-smoking.json
-
87gastro.json
-
210health.json
-
95hiking_routes.json
-
113historic.json
-
122index.json
-
5internet.json
-
74lang/ast.json
-
134lang/ca.json
-
74lang/cs.json
-
61lang/de.json
-
100lang/el.json
-
61lang/en.json
-
136lang/es.json
-
109lang/et.json
-
86lang/fr.json
-
92lang/gl.json
-
122lang/hu.json
-
82lang/it.json
-
87lang/ja.json
-
77lang/nl.json
-
119lang/pl.json
-
92lang/pt-br.json
-
92lang/pt.json
-
95lang/ro.json
-
82lang/ru.json
-
92lang/template.json
-
91lang/uk.json
-
69law.json
-
3leisure.json
-
166memorial.json
-
6military.json
-
53mtb-routes.json
-
4natural.json
-
55office.json
-
67oil_gas.json
-
90organisations.json
-
4other.json
-
15outdoor.json
-
3phone.json
-
11places.json
-
2places_geo.json
-
3playgrounds.json
-
50popupBody.html
-
4post.json
-
66power_routes.json
-
283pt.json
-
2pt_amenities.json
-
80pt_routes.json
-
47pt_stops.json
-
64public.json
-
11railway-electrification.json
-
22railway-infrastructure.json
-
166railway-maxspeed.json
-
60railway-routes.json
-
135religion.json
-
40renewables.json
-
10residential.json
-
3resources.json
-
48shop.json
-
16sport.json
-
151swimming_bathing.json
-
29tourism_attractions.json
-
91tourism_services.json
-
5transport_alternative.json
-
4walk_amenities.json
-
73waste.json
-
13water.json
-
6wikipedia.json
-
5works.json
-
95xmas.json
@ -0,0 +1,27 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Eingänge", |
|||
"en": "Entrances", |
|||
"fr": "Entrées", |
|||
"pt-br": "Acessos" |
|||
}, |
|||
"query": { |
|||
"16": [ |
|||
"(", |
|||
" node[entrance];", |
|||
" node[building=entrance];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"description": [ |
|||
"{% if tags.entrance == 'yes' or (not tags.entrance and tags.building == 'entrance') %}", |
|||
"{{ keyTrans('entrance') }}", |
|||
"{% else %}", |
|||
"{{ tagTrans('entrance', tags.entrance) }}", |
|||
"{% endif %}" |
|||
], |
|||
"styles": "" |
|||
} |
|||
} |
@ -0,0 +1,40 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Schwarzplan", |
|||
"en": "Figure-ground diagram", |
|||
"fr": "Empreintes", |
|||
"pt-br": "Cheios e vazios" |
|||
}, |
|||
"query": { |
|||
"16": [ |
|||
"(", |
|||
" way[building];", |
|||
" relation[building];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"markerSymbol": "", |
|||
"listMarkerSymbol": "{{ markerPolygon({fillColor: \"#000000\", fillOpacity: 1 })|raw }}", |
|||
"priority": [ |
|||
"{% set p = 100 %}", |
|||
"{% if tags.name %}{% set p = p - 10 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}", |
|||
"{{ p }}" |
|||
], |
|||
"style": { |
|||
"width": "0", |
|||
"color": "#000000", |
|||
"fillColor": "#000000", |
|||
"fillOpacity": "1" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,112 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Gebäudehöhen", |
|||
"en": "Building height", |
|||
"fr": "Hauteur", |
|||
"pt-br": "Altura" |
|||
}, |
|||
"query": { |
|||
"16": [ |
|||
"(", |
|||
" way[building];", |
|||
" relation[building];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% if tags.height is defined %}", |
|||
"{% set approxHeight = tags.height %}", |
|||
"{% set m = tags.height|matches('(.*)\\s*(m|ft)$') %}", |
|||
"{% if m and m[2] == 'm' %}{% set approxHeight = m[1] %}{% endif %}", |
|||
"{% if m and m[2] == 'ft' %}{% set approxHeight = m[1] / 3.2808 %}{% endif %}", |
|||
"{% elseif attribute(tags, 'building:levels') is defined %}", |
|||
"{% set approxHeight = attribute(tags, 'building:levels') * 3.5 %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if approxHeight <= 50 %}", |
|||
"{% set color = colorInterpolate(['green', 'red'], approxHeight / 50) %}", |
|||
"{% elseif approxHeight %}", |
|||
"{% set color = colorInterpolate(['red', 'yellow'], (approxHeight - 50) / 250) %} ", |
|||
"{% else %}", |
|||
"{% set color = '#7f7f7f' %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": [ |
|||
"{% if tags.height is defined %}", |
|||
" {% if tags.height|matches('(m|ft)$') %}{{ tags.height -}}", |
|||
" {% else %}{{ tags.height }} m", |
|||
" {%- endif -%}", |
|||
"{% endif -%}", |
|||
"", |
|||
"{%- if attribute(tags, 'building:levels') is defined -%}", |
|||
"{%- if tags.height is defined %}, {% endif %}", |
|||
"{{ attribute(tags, 'building:levels') }} {{ keyTrans('building:levels') }}", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": null, |
|||
"listMarkerSymbol": "{{ markerPolygon({\"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}", |
|||
"priority": "{{ (approxHeight|default(0)) * -1 }}", |
|||
"style": { |
|||
"width": "1", |
|||
"color": "#000000", |
|||
"fillColor": "{{ color }}", |
|||
"fillOpacity": "1" |
|||
} |
|||
}, |
|||
"info": [ |
|||
"<div style='display: inline-block'>", |
|||
"{{ tagTrans('height') }}", |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>", |
|||
" <td colspan>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"{% for i in range(0, 50, 10) %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": i }))|raw }}</td>", |
|||
" <td>{{ i }}m</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
"{% for i in range(100, 250, 50) %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": i }))|raw }}</td>", |
|||
" <td>{{ i }}m</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": \"300\" }))|raw }}</td>", |
|||
" <td>≥300m</td>", |
|||
" </tr>", |
|||
"</table>", |
|||
"</div>", |
|||
"", |
|||
"<div style='display: inline-block'>", |
|||
"{{ tagTrans('building:levels') }}", |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>", |
|||
" <td colspan>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"{% for i in range(0, 12, 3) %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": i }))|raw }}</td>", |
|||
" <td>{{ i }}</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
"{% for i in range(15, 84, 15) %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": i }))|raw }}</td>", |
|||
" <td>{{ i }}</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": \"85\" }))|raw }}</td>", |
|||
" <td>≥85</td>", |
|||
" </tr>", |
|||
"</table>", |
|||
"", |
|||
"</div>" |
|||
] |
|||
} |
@ -0,0 +1,145 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Gebäudealter", |
|||
"en": "Building age", |
|||
"fr": "Date de construction", |
|||
"pt-br": "Idade" |
|||
}, |
|||
"query": { |
|||
"16": [ |
|||
"(", |
|||
" way[building];", |
|||
" relation[building];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set start_date = tags.start_date %}", |
|||
"{% if attribute(tags, 'building:start_date') %}{% set start_date = attribute(tags, 'building:start_date') %}{% endif %}", |
|||
"{# Deprecated tags #}", |
|||
"{% if not start_date and attribute(tags, 'building:age') %}{% set start_date = attribute(tags, 'building:age') %}{% endif %}", |
|||
"{% if not start_date and attribute(tags, 'building:year_built') %}{% set start_date = attribute(tags, 'building:year_built') %}{% endif %}", |
|||
"{% if not start_date and attribute(tags, 'building:buildyear') %}{% set start_date = attribute(tags, 'building:buildyear') %}{% endif %}", |
|||
"{% if not start_date and attribute(tags, 'year_built') %}{% set start_date = attribute(tags, 'year_built') %}{% endif %}", |
|||
"{% if not start_date and attribute(tags, 'building:year') %}{% set start_date = attribute(tags, 'building:year') %}{% endif %}", |
|||
"", |
|||
"{% if start_date %}", |
|||
" {# equalize tagging mistakes - need to add QA messages #}", |
|||
" {# convert 1910-1911 to 1910..1911 #}{% set m = start_date|matches('^(\\d{4})-(\\d{4})$') %}{% if m %}{% set start_date = m[1] ~ '..' ~ m[2] %}{% endif %}", |
|||
" {# convert 191* to 1910s #}{% set m = start_date|matches('^(\\d{3})\\*$') %}{% if m %}{% set start_date = m[1] ~ '0s' %}{% endif %}", |
|||
"", |
|||
"", |
|||
" {% set value = start_date|osmParseDate %}", |
|||
" {% if value and value[0] and value[1] %}", |
|||
" {% set value = (value[1] - value[0]) / 2 + value[0] %}", |
|||
" {% elseif value and value[0] %}", |
|||
" {% set value = value[0] %}", |
|||
" {% elseif value and value[1] %}", |
|||
" {% set value = value[1] %}", |
|||
" {% else %}", |
|||
" {% set value = 'error' %}", |
|||
" {% endif %}", |
|||
"", |
|||
" {% if value == 'error' %}", |
|||
" {% set color = '#ff0000' %}", |
|||
" {% elseif value < 1500 %}", |
|||
" {% set color = '#0000ff' %}", |
|||
" {% elseif value < 1900 %}", |
|||
" {% set color = colorInterpolate([ '#0000ff', '#ff00ff' ], (value - 1500.0) / 400) %}", |
|||
" {% elseif value < 2000 %}", |
|||
" {% set color = colorInterpolate([ '#ff00ff', '#ffff00' ], (value - 1900.0) / 100) %}", |
|||
" {% else %}", |
|||
" {% set color = colorInterpolate([ '#ffff00', '#00ff00' ], (value - 2000.0) / 50) %}", |
|||
" {% endif %}", |
|||
"{% else %}", |
|||
"{% set color = '#7f7f7f' %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": [ |
|||
"{% if start_date %}", |
|||
"{{ start_date|osmFormatDate({ format: 'short' }) }}", |
|||
"{% else %}", |
|||
"{{ trans('unknown') }}", |
|||
"{% endif %}" |
|||
], |
|||
"popupDescription": [ |
|||
"{% if start_date %}", |
|||
"{{ start_date|osmFormatDate }}", |
|||
"{% else %}", |
|||
"{{ trans('unknown') }}", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": null, |
|||
"listMarkerSymbol": "{{ markerPolygon({ \"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}", |
|||
"priority": [ |
|||
"{% set p = 100 %}", |
|||
"{% if start_date %}{% set p = p - 20 %}{% endif %}", |
|||
"{% if tags.name %}{% set p = p - 10 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}", |
|||
"{{ p }}" |
|||
], |
|||
"style": { |
|||
"width": "1", |
|||
"color": "#000000", |
|||
"fillColor": "{{ color }}", |
|||
"fillOpacity": "0.8" |
|||
} |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1400\" }))|raw }}</td>", |
|||
" <td><1500</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1500\" }))|raw }}</td>", |
|||
" <td>1500</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1600\" }))|raw }}</td>", |
|||
" <td>1600</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1700\" }))|raw }}</td>", |
|||
" <td>1700</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1800\" }))|raw }}</td>", |
|||
" <td>1800</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1900\" }))|raw }}</td>", |
|||
" <td>1900</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1950\" }))|raw }}</td>", |
|||
" <td>1950</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"2000\" }))|raw }}</td>", |
|||
" <td>2000</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"2020\" }))|raw }}</td>", |
|||
" <td>2020</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"xxx\" }))|raw }}</td>", |
|||
" <td>{{ repoTrans('date format not understood') }}</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>", |
|||
" <td>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"</table>" |
|||
] |
|||
} |
@ -0,0 +1,243 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Gebäudearten", |
|||
"en": "Building types", |
|||
"fr": "Type", |
|||
"pt-br": "Tipologias" |
|||
}, |
|||
"query": { |
|||
"16": "nwr[building][building!=no];" |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set type = tags.building|split(';')[0] %}", |
|||
"{% if tags.military %}{% set type = 'military' %}{% endif %}", |
|||
"{% set color = const.other.color %}", |
|||
"{% for cat, data in const %}", |
|||
" {% if type in data.types %}", |
|||
" {% set color = data.color %}", |
|||
" {% endif %}", |
|||
"{% endfor %}" |
|||
], |
|||
"description": [ |
|||
"{% if tags.building == 'yes' and tags.military %}", |
|||
"{{ tagTrans('building', 'military') }}", |
|||
"{% elseif tags.building == 'yes' %}", |
|||
"{{ keyTrans('building') }}", |
|||
"{% else %}", |
|||
"{{ tagTransList('building', tags.building) }}", |
|||
"{% endif %}", |
|||
"{% if tags.building == 'construction' and tags.construction %}", |
|||
"({{ tagTransList('building', tags.construction) }})", |
|||
"{% endif %}", |
|||
"{% if tags.building in [ 'yes', 'military' ] and tags.military %}", |
|||
"({{ tagTransList('military', tags.military) }})", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": "", |
|||
"listMarkerSymbol": "{{ markerPolygon({\"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}", |
|||
"priority": [ |
|||
"{% set p = 100 %}", |
|||
"{% if tags.name %}{% set p = p - 10 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}", |
|||
"{{ p }}" |
|||
], |
|||
"style": { |
|||
"width": "1", |
|||
"color": "#000000", |
|||
"fillColor": "{{ color }}", |
|||
"fillOpacity": "0.8" |
|||
} |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for cat, data in const %}", |
|||
" <tr>", |
|||
" <td valign='top'>{{ markerPolygon({ \"fillColor\": data.color, \"fillOpacity\": \"0.8\", \"width\": 1, \"color\": \"#000000\" })|raw }}</td>", |
|||
" <td onclick='this.classList.toggle(\"infoShowDetails\")'><b>{{ trans(data.name) }}</b><span class='details'>:", |
|||
" {% for i, type in data.types %}<span title='building={{ type }}'>{% if i > 0 %}, {% endif %}{{ tagTrans('building', type) }}</span>{% endfor %}", |
|||
" </span>", |
|||
"<span class='summary'><i class=\"fa fa-info-circle\" aria-hidden=\"true\"></i></span>", |
|||
" </td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"residential": { |
|||
"name": "tag:building=residential", |
|||
"color": "#25a000", |
|||
"types": [ |
|||
"house", |
|||
"apartments", |
|||
"block", |
|||
"flats", |
|||
"farm", |
|||
"detached", |
|||
"dormitory", |
|||
"terrace", |
|||
"houseboat", |
|||
"bungalow", |
|||
"static_caravan", |
|||
"residential", |
|||
"semidetached_house", |
|||
"ger", |
|||
"trullo" |
|||
] |
|||
}, |
|||
"tourism": { |
|||
"name": "tag:tourism", |
|||
"color": "#814ce2", |
|||
"types": [ |
|||
"hotel", |
|||
"ruins", |
|||
"conservatory" |
|||
] |
|||
}, |
|||
"commercial": { |
|||
"name": "tag:building=commercial", |
|||
"color": "#ec5bcf", |
|||
"types": [ |
|||
"commercial", |
|||
"office", |
|||
"industrial", |
|||
"retail", |
|||
"supermarket", |
|||
"warehouse", |
|||
"kiosk", |
|||
"mall", |
|||
"shop" |
|||
] |
|||
}, |
|||
"religious": { |
|||
"name": "tag:building=religious", |
|||
"color": "#af29cc", |
|||
"types": [ |
|||
"religious", |
|||
"cathedral", |
|||
"chapel", |
|||
"church", |
|||
"mosque", |
|||
"temple", |
|||
"synagogue", |
|||
"shrine", |
|||
"monastery" |
|||
] |
|||
}, |
|||
"amenity": { |
|||
"name": "tag:amenity", |
|||
"color": "#2935cc", |
|||
"types": [ |
|||
"kindergarten", |
|||
"civic", |
|||
"government", |
|||
"hospital", |
|||
"school", |
|||
"university", |
|||
"grandstand", |
|||
"public", |
|||
"toilets", |
|||
"college" |
|||
] |
|||
}, |
|||
"agriculture": { |
|||
"name": "tag:building=agriculture", |
|||
"color": "#92e934", |
|||
"types": [ |
|||
"bakehouse", |
|||
"barn", |
|||
"cowshed", |
|||
"farm_auxiliary", |
|||
"greenhouse", |
|||
"stable", |
|||
"sty", |
|||
"kitchen", |
|||
"slurry_tank", |
|||
"silo" |
|||
] |
|||
}, |
|||
"industrial": { |
|||
"name": "tag:landuse=industrial", |
|||
"color": "#e2da1b", |
|||
"types": [ |
|||
"construction", |
|||
"garbage_shed", |
|||
"transformer_tower", |
|||
"service", |
|||
"water_tower", |
|||
"industrial", |
|||
"warehouse", |
|||
"storage_tank" |
|||
] |
|||
}, |
|||
"transportation": { |
|||
"name": "tag:building=transportation", |
|||
"color": "#1bb5e2", |
|||
"types": [ |
|||
"carport", |
|||
"garage", |
|||
"garages", |
|||
"bridge", |
|||
"hangar", |
|||
"parking", |
|||
"train_station", |
|||
"transportation" |
|||
] |
|||
}, |
|||
"sport": { |
|||
"name": "tag:sport", |
|||
"color": "#e21b66", |
|||
"types": [ |
|||
"pavilion", |
|||
"riding_hall", |
|||
"stadium", |
|||
"sports_hall" |
|||
] |
|||
}, |
|||
"roof": { |
|||
"name": "tag:building=roof", |
|||
"color": "#afafaf7f", |
|||
"types": [ |
|||
"roof" |
|||
] |
|||
}, |
|||
"shelter": { |
|||
"name": "tag:amenity=shelter", |
|||
"color": "#cc8725", |
|||
"types": [ |
|||
"cabin", |
|||
"hut", |
|||
"shed" |
|||
] |
|||
}, |
|||
"military": { |
|||
"name": "tag:building=military", |
|||
"color": "#4a7300", |
|||
"types": [ |
|||
"bunker", |
|||
"military" |
|||
] |
|||
}, |
|||
"unspecified": { |
|||
"name": "tag:building=generic", |
|||
"color": "#7f7f7f", |
|||
"types": [ |
|||
"yes", |
|||
"generic" |
|||
] |
|||
}, |
|||
"other": { |
|||
"name": "other", |
|||
"color": "#ff0000", |
|||
"types": [] |
|||
} |
|||
} |
|||
} |
@ -1,37 +1,28 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"type": "index", |
|||
"name": { |
|||
"de": "Gebäude", |
|||
"en": "Buildings", |
|||
"fr": "Bâtiments" |
|||
"fr": "Bâtiments", |
|||
"hu": "Épületek", |
|||
"pt": "Edifícios", |
|||
"pt-br": "Edificações" |
|||
}, |
|||
"query": { |
|||
"16": [ |
|||
"(", |
|||
" way[building];", |
|||
" relation[building];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"markerSymbol": null, |
|||
"priority": [ |
|||
"{% set p = 100 %}", |
|||
"{% if tags.name %}{% set p = p - 10 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}", |
|||
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}", |
|||
"{{ p }}" |
|||
], |
|||
"style": { |
|||
"width": "1", |
|||
"color": "#000000", |
|||
"fillColor": "#000000" |
|||
"subCategories": [ |
|||
{ |
|||
"id": "buildings-type" |
|||
}, |
|||
{ |
|||
"id": "buildings-figure-ground" |
|||
}, |
|||
{ |
|||
"id": "buildings-height" |
|||
}, |
|||
{ |
|||
"id": "buildings-start_date" |
|||
}, |
|||
{ |
|||
"id": "buildings-entrances" |
|||
} |
|||
} |
|||
] |
|||
} |
@ -0,0 +1,66 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Car routes", |
|||
"fr": "Itinéraires auto", |
|||
"hu": "Főútvonalak", |
|||
"pt-br": "Rotas rodoviárias" |
|||
}, |
|||
"query": { |
|||
"10": "relation[type=route][route=road]" |
|||
}, |
|||
"members": true, |
|||
"feature": { |
|||
"pre": "{% set color = '#' ~ tags.network|default('')|md5|slice(0, 6) %}", |
|||
"description": "{% if tags.network %}{{ tagTrans('network', tags.network) }}{% endif %}", |
|||
"title": "{% if tags.ref and tags.name %}{{ tags.ref }} - {{ tags.name }}{% elseif tags.ref %}{{ tags.ref }}{% elseif tags.name %}{{ tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}", |
|||
"listMarkerSymbol": "{{ markerLine({ 'width': 4, 'color': color })|raw }}", |
|||
"markerSymbol": "", |
|||
"styles": "" |
|||
}, |
|||
"memberFeature": { |
|||
"pre": [ |
|||
"{% set refs = [] %}", |
|||
"{% set color = '#d41d8c' %}", |
|||
"{% if tags.ref %}", |
|||
" {% for ref in tags.ref|split(';') %}", |
|||
" {% set refs = refs|merge([ ref|trim ]) %}", |
|||
" {% endfor %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.network %}", |
|||
" {% set color = '#' ~ master.tags.network|md5|slice(0, 6) %}", |
|||
" {% endif %}", |
|||
" {% if master.tags.ref %}", |
|||
" {% set refs = refs|merge([ master.tags.ref ]) %}", |
|||
" {% endif %}", |
|||
"{% endfor %}", |
|||
"", |
|||
"{% set refs = refs|unique|natsort({ insensitive: true }) %}" |
|||
], |
|||
"body": [ |
|||
"<h4>Routes</h4>", |
|||
"<ul>", |
|||
"{% for master in masters %}", |
|||
" {% set _color = '#' ~ master.tags.operator|default('')|md5|slice(0, 6) %}", |
|||
" <li data-object=\"{{ master.id }}\" style='list-style: none;'>", |
|||
" <span class='markerParent'><div class='marker'>{{ markerLine({ width: 4, color: _color })|raw }}</div></span>", |
|||
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}</span>", |
|||
" <span class='description'>{{ tagTrans('network', master.tags.network) }}</span>", |
|||
" </li>", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"listExclude": "1", |
|||
"style": { |
|||
"color": "{{ color }}", |
|||
"width": 4, |
|||
"opacity": 1, |
|||
"text": "{{ refs|join(' · ') }} ", |
|||
"textRepeat": "1", |
|||
"textOffset": "12", |
|||
"textFontWeight": "bold" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Kohle", |
|||
"en": "Coal", |
|||
"fr": "Charbon", |
|||
"hu": "Kőszén", |
|||
"pt-br": "Carvão" |
|||
}, |
|||
"query": { |
|||
"11": [ |
|||
"(", |
|||
"node[landuse~\"^(quarry)$\"][resource~\"^(|.*;)coal(|;.*)$\"];", |
|||
"way[landuse~\"^(quarry)$\"][resource~\"^(|.*;)coal(|;.*)$\"];", |
|||
"relation[landuse~\"^(quarry)$\"][resource~\"^(|.*;)coal(|;.*)$\"];", |
|||
"node[man_made~\"^(mineshaft)$\"][resource~\"^(|.*;)coal(|;.*)$\"];", |
|||
"way[man_made~\"^(mineshaft)$\"][resource~\"^(|.*;)coal(|;.*)$\"];", |
|||
"way[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(coal)(|;.*)$\"];", |
|||
"relation[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(coal)(|;.*)$\"];", |
|||
"node[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(coal)(|;.*)$\"];", |
|||
"way[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(coal)(|;.*)$\"];", |
|||
"relation[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(coal)(|;.*)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"description": [ |
|||
"{% if tags.man_made == 'pipeline' %}", |
|||
"{{ tagTrans('man_made', 'pipeline') }} ({{ tagTrans('substance', tags.substance) }})", |
|||
"{% elseif tags.man_made %}", |
|||
"{{ tagTrans('man_made', tags.man_made) }}", |
|||
"{% elseif tags.power == 'plant' %}", |
|||
"{{ tagTrans('power', 'plant') }} {% if attribute(tags, 'generator:source') %}({{ tagTransList('generator:source', attribute(tags, 'generator:source')) }}){% endif %}", |
|||
"{% elseif tags.power == 'generator' %}", |
|||
"{{ tagTrans('power', 'generator') }} {% if attribute(tags, 'generator:source') %}({{ tagTransList('generator:source', attribute(tags, 'generator:source')) }}){% endif %}", |
|||
"{% elseif tags.landuse == 'quarry' %}", |
|||
"{{ tagTrans('landuse', tags.landuse) }} {% if tags.resource %}({{ tagTrans('resource', tags.resource) }}){% endif %}", |
|||
"{% elseif tags.landuse == 'industrial' %}", |
|||
"{{ tagTrans('landuse', tags.landuse) }} ({{ tagTrans('industrial', tags.industrial) }})", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": null |
|||
} |
|||
} |
@ -0,0 +1,85 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Handwerk", |
|||
"en": "Craft", |
|||
"fr": "Artisanat", |
|||
"hu": "Műhelyek", |
|||
"pt": "Artesanato", |
|||
"pt-br": "Ofícios" |
|||
}, |
|||
"query": { |
|||
"15": "(node[craft];way[craft];relation[craft];);" |
|||
}, |
|||
"feature": { |
|||
"description": "{{ tagTransList('craft', tags.craft) }}", |
|||
"markerSign": "{% set craft0 = tags.craft|split(';')[0] %}{% if const.crafts[craft0] %}{% set v = const.crafts[craft0] %}{% else %}{% set v = const.default %}{% endif %}{% if v|slice(0, 3) == 'fa-' %}<i class=\"fa {{ v }}\"></i>{% else %}{{ v|raw }}{% endif %}" |
|||
}, |
|||
"const": { |
|||
"default": "", |
|||
"crafts": { |
|||
"bakery": "fa-birthday-cake", |
|||
"beekeeper": "🐝", |
|||
"blacksmith": "🔨", |
|||
"boatbuilder": "⛵", |
|||
"bookbinder": "📕", |
|||
"brewery": "fa-beer", |
|||
"builder": "🚧", |
|||
"carpenter": "", |
|||
"carpet_layer": "", |
|||
"caterer": "fa-birthday-cake", |
|||
"chimney_sweeper": "", |
|||
"clockmaker": "⌚", |
|||
"confectionery": "", |
|||
"distillery": "🍷", |
|||
"dressmaker": "👚", |
|||
"electrician": "🔌", |
|||
"floorer": "", |
|||
"gardener": "⚘", |
|||
"glaziery": "", |
|||
"handicraft": "", |
|||
"hvac": "", |
|||
"insulation": "", |
|||
"jeweller": "💍", |
|||
"key_cutter": "🔑", |
|||
"locksmith": "🔑", |
|||
"metal_construction": "", |
|||
"optician": "👓", |
|||
"painter": "🖌", |
|||
"parquet_layer": "", |
|||
"photographer": "📷", |
|||
"photographic_laboratory": "📷", |
|||
"piano_tuner": "", |
|||
"plasterer": "", |
|||
"plumber": "", |
|||
"pottery": "", |
|||
"rigger": "", |
|||
"roofer": "", |
|||
"saddler": "🐎", |
|||
"sailmaker": "⛵", |
|||
"sawmill": "", |
|||
"scaffolder": "", |
|||
"sculptor": "", |
|||
"shoemaker": "👞", |
|||
"stand_builder": "", |
|||
"stonemason": "", |
|||
"sun_protection": "", |
|||
"tailor": "👚", |
|||
"tiler": "", |
|||
"tinsmith": "", |
|||
"turner": "", |
|||
"upholsterer": "", |
|||
"watchmaker": "⌚", |
|||
"window_construction": "", |
|||
"winery": "🍷" |
|||
} |
|||
}, |
|||
"filter": { |
|||
"craft": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"type": "select", |
|||
"show_default": "true", |
|||
"values": "{% set list = [] %}{% for t, v in const.crafts %}<option value=\"{{ t }}\">{% set list = list|merge([ t ]) %}{{ tagTrans('craft', t) }}</option>{% endfor %}<option value='other' query='nwr[craft][craft!~\"^({{ list|join('|') }})$\"]'>{{ trans('other') }}</option>" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,70 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Rauchfreie Gastronomie", |
|||
"en": "Smokefree Gastronomy", |
|||
"fr": "Restauration sans tabac", |
|||
"hu": "Nem dohányzó vendéglátóhelyek", |
|||
"pt": "Restauração livre de tabaco", |
|||
"pt-br": "Gastronomia sem fumo" |
|||
}, |
|||
"query": { |
|||
"16": "(node[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];way[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];relation[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];);" |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% if tags.smoking == 'yes' or tags.smoking == 'dedicated' %}", |
|||
" {% set smoking_color='red' %}", |
|||
" {% set smoking_icon='🚬' %}", |
|||
"{% elseif tags.smoking == 'separated' or tags.smoking == 'isolated' %}", |
|||
" {% set smoking_color='#ffdf00' %}", |
|||
" {% set smoking_icon='🚬' %}", |
|||
"{% elseif tags.smoking == 'no' or tags.smoking == 'outside' or tags.smokefree == 'yes' %}", |
|||
" {% set smoking_color='#00ff00' %}", |
|||
" {% set smoking_icon='🚭' %}", |
|||
"{% else %}", |
|||
" {% set smoking_color='white' %}", |
|||
" {% set smoking_icon='' %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": "{{ tagTrans('amenity', tags.amenity) }}", |
|||
"body": [ |
|||
"<ul>", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-cutlery\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('cuisine') }}:</span>", |
|||
" <span class='value'>{{ tagTransList('cuisine', tags.cuisine)|default(trans('unknown')) }}</span>", |
|||
" </li>", |
|||
" <li class='hasSymbol'>", |
|||
" <span class='symbol'>🚬</span>", |
|||
" <span class='key'>{{ keyTrans('smoking') }}:</span>", |
|||
" <span class='value'>{% if tags.smoking %}{{ tagTrans('smoking', tags.smoking) }}{% else %}{{ trans('unknown') }}{% endif %}</span>", |
|||
" </li>", |
|||
"</ul>" |
|||
], |
|||
"markerSign": "{% if tags.amenity=='bar' %}🍸{% elseif tags.amenity=='biergarten'%}🍻{% elseif tags.amenity=='cafe' %}☕{% elseif tags.amenity=='fast_food' %}🍔{% elseif tags.amenity=='ice_cream' %}🍨{% elseif tags.amenity=='pub' %}🍺{% else %}🍴{% endif %}", |
|||
"markerSymbol": "{{ markerPointer({\"fillColor\": smoking_color })|raw }}", |
|||
"listMarkerSymbol": "{{ markerCircle({\"fillColor\": smoking_color })|raw }}" |
|||
}, |
|||
"info": [ |
|||
"{{ keyTrans('smoking') }}:", |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({ \"fillColor\": \"#00ff00\" })|raw }}</td>", |
|||
" <td>{{ tagTrans('smoking', 'no') }}, {{ tagTrans('smoking', 'outside') }}</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({ \"fillColor\": \"#ffdf00\" })|raw }}</td>", |
|||
" <td>{{ tagTrans('smoking', 'separated') }}, {{ tagTrans('smoking', 'isolated') }}</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({ \"fillColor\": \"red\" })|raw }}</td>", |
|||
" <td>{{ tagTrans('smoking', 'yes') }}, {{ tagTrans('smoking', 'dedicated') }}</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({ \"fillColor\": \"white\" })|raw }}</td>", |
|||
" <td>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"</table>" |
|||
] |
|||
} |
@ -1,58 +1,92 @@ |
|||
{ |
|||
"category:administrative": null, |
|||
"category:agriculture": null, |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:administrative": "", |
|||
"category:agriculture": "", |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "", |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Comunicacions", |
|||
"category:construction": null, |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura i religió", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:education": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "", |
|||
"category:electric_power": "", |
|||
"category:emergency": "Serveis d'emergència", |
|||
"category:financial": null, |
|||
"category:gastro": null, |
|||
"category:health": null, |
|||
"category:hiking_routes": null, |
|||
"category:historic": null, |
|||
"category:index": null, |
|||
"category:energy": "", |
|||
"category:financial": "", |
|||
"category:gastro": "", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "", |
|||
"category:hiking_routes": "", |
|||
"category:historic": "", |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "Accés a Internet", |
|||
"category:leisure": null, |
|||
"category:military": null, |
|||
"category:natural": null, |
|||
"category:other": null, |
|||
"category:phone": null, |
|||
"category:places": null, |
|||
"category:places_geo": null, |
|||
"category:playgrounds": null, |
|||
"category:post": null, |
|||
"category:power": null, |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": null, |
|||
"category:public": null, |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:religion": null, |
|||
"category:residential": null, |
|||
"category:resources": null, |
|||
"category:shop": null, |
|||
"category:sport": null, |
|||
"category:tourism_attractions": null, |
|||
"category:tourism_services": null, |
|||
"category:transport_alternative": null, |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:law": "", |
|||
"category:leisure": "", |
|||
"category:leisure_sport_shopping": "Oci, esport i compres", |
|||
"category:services": "Serveis" |
|||
"category:memorial": "", |
|||
"category:military": "", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "", |
|||
"category:outdoor": "", |
|||
"category:phone": "", |
|||
"category:places": "", |
|||
"category:places_geo": "", |
|||
"category:playgrounds": "", |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "", |
|||
"category:pt_amenities": "", |
|||
"category:public": "", |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "", |
|||
"category:renewables": "", |
|||
"category:residential": "", |
|||
"category:resources": "", |
|||
"category:services": "Serveis", |
|||
"category:shop": "", |
|||
"category:special": "", |
|||
"category:sport": "", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "", |
|||
"category:tourism_services": "", |
|||
"category:transport": "", |
|||
"category:transport_alternative": "", |
|||
"category:transport_car": "", |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -1,60 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Διοικητικά Όρια", |
|||
"category:agriculture": "Γεωργία", |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "", |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Επικοινωνίες", |
|||
"category:construction": null, |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Πολιτισμός", |
|||
"category:culture_religion": "Πολιτισμός", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "Υπηρεσίες Εκπαίδευσης", |
|||
"category:electric_power": "", |
|||
"category:emergency": "Υπηρεσίες Έκτακτης Ανάγκης", |
|||
"category:energy": "", |
|||
"category:financial": "Χρήμα", |
|||
"category:gastro": "Γαστρονομία", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "Υγεία", |
|||
"category:hiking_routes": null, |
|||
"category:hiking_routes": "", |
|||
"category:historic": "Ιστορικά", |
|||
"category:index": null, |
|||
"category:internet": null, |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "", |
|||
"category:law": "", |
|||
"category:leisure": "Αναψυχή", |
|||
"category:leisure_sport_shopping": "Αναψυχή, Αθλητισμός και Αγορές", |
|||
"category:memorial": "", |
|||
"category:military": "Στρατιωτικό", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "Φυσικοί Σχηματισμοί", |
|||
"category:other": null, |
|||
"category:phone": null, |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "", |
|||
"category:outdoor": "", |
|||
"category:phone": "", |
|||
"category:places": "Μέρη", |
|||
"category:places_geo": "Μέρη", |
|||
"category:playgrounds": null, |
|||
"category:post": null, |
|||
"category:power": null, |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "Στάσεις & Σταθμοί", |
|||
"category:playgrounds": "", |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "Στάσεις & Σταθμοί", |
|||
"category:pt_amenities": "", |
|||
"category:public": "Δημόσιες Υπηρεσίες", |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "Θρησκεία", |
|||
"category:renewables": "", |
|||
"category:residential": "Περιοχές Κατοικίας", |
|||
"category:resources": null, |
|||
"category:resources": "", |
|||
"category:services": "Υπηρεσίες", |
|||
"category:shop": "Αγορές", |
|||
"category:special": "", |
|||
"category:sport": "Άθληση", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Τουρισμός", |
|||
"category:tourism_services": "Τουρισμός", |
|||
"category:transport_alternative": "Εναλλακτικά (ποδηλασία, ορειβασία,...)", |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Αναψυχή, Αθλητισμός και Αγορές", |
|||
"category:services": "Υπηρεσίες", |
|||
"category:transport": "Μεταφορές", |
|||
"category:transport_pt": "Δημόσιες Μεταφορές" |
|||
"category:transport_alternative": "Εναλλακτικά (ποδηλασία, ορειβασία,...)", |
|||
"category:transport_car": "", |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "Δημόσιες Μεταφορές", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -1,58 +1,92 @@ |
|||
{ |
|||
"category:administrative": null, |
|||
"category:agriculture": null, |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:communication": null, |
|||
"category:construction": null, |
|||
"category:administrative": "Áreas Administrativas", |
|||
"category:agriculture": "Agricultura", |
|||
"category:alternative_amenities": "Instalaciones", |
|||
"category:alternative_routes": "Rutas", |
|||
"category:buildings": "Edificios", |
|||
"category:buildings-entrances": "Entradas", |
|||
"category:buildings-figure-ground": "Diagrama figura-fondo", |
|||
"category:buildings-height": "Altura del edificio", |
|||
"category:buildings-start_date": "Edad del edificio", |
|||
"category:buildings-type": "Tipos de edificio", |
|||
"category:car_amenities": "Instalaciones", |
|||
"category:car_furniture": "Mobiliario Urbano", |
|||
"category:car_maxspeed": "Velocidad máxima", |
|||
"category:car_routes": "Rutas de coche", |
|||
"category:children": "Atracciones para niños", |
|||
"category:coal": "Carbón", |
|||
"category:communication": "Comunicación", |
|||
"category:construction": "Sitios de construcción", |
|||
"category:craft": "Artesano", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura y religión", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:education": null, |
|||
"category:cycle_amenities": "Instalaciones", |
|||
"category:cycle_routes": "Rutas ciclistas", |
|||
"category:education": "Servicios educativos", |
|||
"category:electric_power": "Energía eléctrica", |
|||
"category:emergency": "Servicios de emergencia", |
|||
"category:financial": null, |
|||
"category:gastro": null, |
|||
"category:health": null, |
|||
"category:hiking_routes": null, |
|||
"category:historic": null, |
|||
"category:index": null, |
|||
"category:energy": "Energía", |
|||
"category:financial": "Financiera", |
|||
"category:gastro": "Gastronomía", |
|||
"category:gastro-smoking": "Gastronomía libre de humo", |
|||
"category:health": "Salud", |
|||
"category:hiking_routes": "Rutas de senderismo", |
|||
"category:historic": "Histórico", |
|||
"category:index": "Índice", |
|||
"category:infrastructure": "Infraestructura", |
|||
"category:internet": "Acceso a Internet", |
|||
"category:leisure": null, |
|||
"category:military": null, |
|||
"category:natural": null, |
|||
"category:other": null, |
|||
"category:phone": null, |
|||
"category:places": null, |
|||
"category:places_geo": null, |
|||
"category:playgrounds": null, |
|||
"category:post": null, |
|||
"category:power": null, |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "Paradas y estaciones", |
|||
"category:public": null, |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:religion": null, |
|||
"category:residential": null, |
|||
"category:resources": null, |
|||
"category:shop": null, |
|||
"category:sport": null, |
|||
"category:tourism_attractions": null, |
|||
"category:tourism_services": null, |
|||
"category:transport_alternative": null, |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:law": "Ley", |
|||
"category:leisure": "Ocio", |
|||
"category:leisure_sport_shopping": "Ocio, deporte y compras", |
|||
"category:services": "Servicios" |
|||
"category:memorial": "Memoriales", |
|||
"category:military": "Militar", |
|||
"category:mtb-routes": "Rutas de ciclismo de montaña", |
|||
"category:natural": "Formaciones naturales", |
|||
"category:office": "Oficinas", |
|||
"category:oil_gas": "Petróleo y gas natural", |
|||
"category:organisations": "Organizaciones", |
|||
"category:other": "Otro", |
|||
"category:outdoor": "Actividades al aire libre", |
|||
"category:phone": "Teléfono", |
|||
"category:places": "Lugares", |
|||
"category:places_geo": "Lugares", |
|||
"category:playgrounds": "Parque infantil", |
|||
"category:post": "Correos", |
|||
"category:power_routes": "Rutas de energía", |
|||
"category:pt": "Mapa de transporte público", |
|||
"category:pt:routes": "Rutas", |
|||
"category:pt:stops": "Paradas y estaciones", |
|||
"category:pt_amenities": "Instalaciones", |
|||
"category:public": "Servicios públicos", |
|||
"category:railway": "Ferrocarril", |
|||
"category:railway-electrification": "Electrificación ferroviaria", |
|||
"category:railway-infrastructure": "Infraestructura ferroviaria", |
|||
"category:railway-maxspeed": "Velocidad máxima del ferrocarril", |
|||
"category:railway-routes": "Rutas de ferrocarril", |
|||
"category:religion": "Religión", |
|||
"category:renewables": "Renovables", |
|||
"category:residential": "Áreas residenciales", |
|||
"category:resources": "Extracción de recursos", |
|||
"category:services": "Servicios", |
|||
"category:shop": "Compras", |
|||
"category:special": "Especial", |
|||
"category:sport": "Deportes", |
|||
"category:swimming_bathing": "Natación y baño", |
|||
"category:tourism_attractions": "Turismo", |
|||
"category:tourism_services": "Turismo", |
|||
"category:transport": "Transporte", |
|||
"category:transport_alternative": "Transporte alternativo", |
|||
"category:transport_car": "Tráfico individual", |
|||
"category:transport_cycle": "Ciclismo", |
|||
"category:transport_pt": "Transporte público", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "Instalaciones", |
|||
"category:waste": "Basura", |
|||
"category:water": "Cuerpos de agua", |
|||
"category:wikipedia": "Wikipedia", |
|||
"category:works": "Fábricas", |
|||
"category:xmas": "Navidades", |
|||
"date format not understood": "Formato de fecha incomprensible", |
|||
"outdated feature": "Característica obsoleta", |
|||
"xmas:outdated-warning": "¡La característica no se ha actualizado para la temporada actual! Por favor verifique y establezca la etiqueta 'xmas: lastcheck' a la fecha actual." |
|||
} |
@ -1,61 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Administratiivalad", |
|||
"category:agriculture": "Põllumajandus", |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "", |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Kommunikatsioon", |
|||
"category:construction": null, |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Kultuur", |
|||
"category:culture_religion": "Kultuur ja religioon", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "Haridusteenused", |
|||
"category:electric_power": "Elekter", |
|||
"category:emergency": "Hädaabi teenused", |
|||
"category:financial": null, |
|||
"category:gastro": null, |
|||
"category:health": null, |
|||
"category:hiking_routes": null, |
|||
"category:energy": "", |
|||
"category:financial": "", |
|||
"category:gastro": "", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "", |
|||
"category:hiking_routes": "", |
|||
"category:historic": "Ajalooline", |
|||
"category:index": null, |
|||
"category:internet": null, |
|||
"category:leisure": null, |
|||
"category:military": null, |
|||
"category:natural": null, |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "", |
|||
"category:law": "", |
|||
"category:leisure": "", |
|||
"category:leisure_sport_shopping": "Vaba aeg, sport ja ostmine", |
|||
"category:memorial": "", |
|||
"category:military": "", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "Ülejäänud", |
|||
"category:outdoor": "", |
|||
"category:phone": "Telefon", |
|||
"category:places": "Kohad", |
|||
"category:places_geo": "Kohad", |
|||
"category:playgrounds": "Mänguväljak", |
|||
"category:post": null, |
|||
"category:power": "Elekter", |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": null, |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "", |
|||
"category:pt_amenities": "", |
|||
"category:public": "Kommunaalteenused", |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:railway": "Raudtee", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "Religioon", |
|||
"category:renewables": "", |
|||
"category:residential": "Elamupiirkonnad", |
|||
"category:resources": null, |
|||
"category:resources": "", |
|||
"category:services": "Teenused", |
|||
"category:shop": "Ostmine", |
|||
"category:sport": null, |
|||
"category:special": "", |
|||
"category:sport": "", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Turism", |
|||
"category:tourism_services": "Turism", |
|||
"category:transport_alternative": "Alternatiivne (jalgrattasõit, matkamine, ...)", |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Vaba aeg, sport ja ostmine", |
|||
"category:railway": "Raudtee", |
|||
"category:services": "Teenused", |
|||
"category:transport": "Transport", |
|||
"category:transport_pt": "Ühistransport" |
|||
"category:transport_alternative": "Alternatiivne (jalgrattasõit, matkamine, ...)", |
|||
"category:transport_car": "", |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "Ühistransport", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -0,0 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Divisións administrativas", |
|||
"category:agriculture": "Agricultura", |
|||
"category:alternative_amenities": "Instalacións", |
|||
"category:alternative_routes": "Rotas", |
|||
"category:buildings": "Edificios", |
|||
"category:buildings-entrances": "Entradas", |
|||
"category:buildings-figure-ground": "Cheos e baleiros", |
|||
"category:buildings-height": "Altitude do edificio", |
|||
"category:buildings-start_date": "Idade do edificio", |
|||
"category:buildings-type": "Tipos de edificios", |
|||
"category:car_amenities": "Instalacións", |
|||
"category:car_furniture": "Mobiliario urbano", |
|||
"category:car_maxspeed": "Velocidade máxima", |
|||
"category:car_routes": "Rotas automobilísticas", |
|||
"category:children": "Instalacións infantís", |
|||
"category:coal": "Carbón", |
|||
"category:communication": "Comunicacións", |
|||
"category:construction": "Terreos baixo construción", |
|||
"category:craft": "Artesán", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura e relixión", |
|||
"category:cycle_amenities": "Instalacións", |
|||
"category:cycle_routes": "Rotas ciclistas", |
|||
"category:education": "Servizos educativos", |
|||
"category:electric_power": "Enerxía eléctrica", |
|||
"category:emergency": "Servizos de emerxencia", |
|||
"category:energy": "Enerxía", |
|||
"category:financial": "Finanzas", |
|||
"category:gastro": "Restauración", |
|||
"category:gastro-smoking": "Restauración sen fume", |
|||
"category:health": "Saúde", |
|||
"category:hiking_routes": "Rotas sendeiristas", |
|||
"category:historic": "Histórico", |
|||
"category:index": "Índice", |
|||
"category:infrastructure": "Infraestrutura", |
|||
"category:internet": "Acceso á internet", |
|||
"category:law": "Leis", |
|||
"category:leisure": "Lecer", |
|||
"category:leisure_sport_shopping": "Lecer, deporte e compras", |
|||
"category:memorial": "Memoriais", |
|||
"category:military": "Militar", |
|||
"category:mtb-routes": "Rotas de bicicleta de montaña", |
|||
"category:natural": "Formacións naturais", |
|||
"category:office": "Oficinas", |
|||
"category:oil_gas": "Petróleo e gas natural", |
|||
"category:organisations": "Organizacións", |
|||
"category:other": "Outros", |
|||
"category:outdoor": "Actividades ó ar libre", |
|||
"category:phone": "Teléfono", |
|||
"category:places": "Lugares", |
|||
"category:places_geo": "Lugares", |
|||
"category:playgrounds": "Parques infantís", |
|||
"category:post": "Correos", |
|||
"category:power_routes": "Liñas eléctricas", |
|||
"category:pt": "Mapa de transporte público", |
|||
"category:pt:routes": "Rotas", |
|||
"category:pt:stops": "Paraxes e estacións", |
|||
"category:pt_amenities": "Instalacións", |
|||
"category:public": "Servizos públicos", |
|||
"category:railway": "Ferrocarril", |
|||
"category:railway-electrification": "Ferrocarril electrificado", |
|||
"category:railway-infrastructure": "Infraestrutura do ferrocarril", |
|||
"category:railway-maxspeed": "Velocidade máxima do ferrocarril", |
|||
"category:railway-routes": "Liñas de ferrocarril", |
|||
"category:religion": "Relixión", |
|||
"category:renewables": "Renovábeis", |
|||
"category:residential": "Zonas residenciais", |
|||
"category:resources": "Estracción de recursos", |
|||
"category:services": "Servizos", |
|||
"category:shop": "Compras", |
|||
"category:special": "Especial", |
|||
"category:sport": "Deporte", |
|||
"category:swimming_bathing": "Natación e baño", |
|||
"category:tourism_attractions": "Turismo", |
|||
"category:tourism_services": "Turismo", |
|||
"category:transport": "Mobilidade", |
|||
"category:transport_alternative": "Transporte alternativo", |
|||
"category:transport_car": "Tráfico individual", |
|||
"category:transport_cycle": "Ciclismo", |
|||
"category:transport_pt": "Transporte público", |
|||
"category:transport_walk": "Peonil", |
|||
"category:walk_amenities": "Instalacións", |
|||
"category:waste": "Lixo", |
|||
"category:water": "Hidrografía", |
|||
"category:wikipedia": "Wikipedia", |
|||
"category:works": "Producións", |
|||
"category:xmas": "Nadal", |
|||
"date format not understood": "Formato da data non coñecido", |
|||
"outdated feature": "Elemento obsoleto", |
|||
"xmas:outdated-warning": "O elemento non foi actualizado para a tempada actual! Por favor, verifica e define a etiqueta 'xmas:lastcheck' para a data actual." |
|||
} |
@ -1,61 +1,93 @@ |
|||
{ |
|||
"category:administrative": "Adminisztratív határok", |
|||
"category:administrative": "Közigazgatási határok", |
|||
"category:agriculture": "Mezőgazdaság", |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:alternative_amenities": "Létesítmények", |
|||
"category:alternative_routes": "Útvonalak", |
|||
"category:buildings": "Épületek", |
|||
"category:buildings-entrances": "Bejáratok", |
|||
"category:buildings-figure-ground": "Fekete épületalaprajzok", |
|||
"category:buildings-height": "Épületek magassága", |
|||
"category:buildings-start_date": "Épületek kora", |
|||
"category:buildings-type": "Épületek típusa", |
|||
"category:car_amenities": "Létesítmények", |
|||
"category:car_furniture": "Jelzőtáblák", |
|||
"category:car_maxspeed": "Sebességkorlátozás", |
|||
"category:car_routes": "Főútvonalak", |
|||
"category:children": "Gyermekek", |
|||
"category:coal": "Kőszén", |
|||
"category:communication": "Kommunikácó", |
|||
"category:construction": null, |
|||
"category:construction": "Építési terület", |
|||
"category:craft": "Műhelyek", |
|||
"category:culture": "Kultúra", |
|||
"category:culture_religion": "Kultúra", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:education": null, |
|||
"category:emergency": null, |
|||
"category:financial": null, |
|||
"category:gastro": "Gasztronómia", |
|||
"category:health": null, |
|||
"category:hiking_routes": null, |
|||
"category:historic": "Historikus", |
|||
"category:index": null, |
|||
"category:internet": "Internethozzáférés", |
|||
"category:leisure": null, |
|||
"category:military": "Katonai", |
|||
"category:culture_religion": "Kultúra és vallás", |
|||
"category:cycle_amenities": "Kerékpáros létesítmények", |
|||
"category:cycle_routes": "Kerékpáros útvonalak", |
|||
"category:education": "Oktatás", |
|||
"category:electric_power": "Áramellátás", |
|||
"category:emergency": "Vészhelyzet", |
|||
"category:energy": "Energiaellátás", |
|||
"category:financial": "Pénzügyek", |
|||
"category:gastro": "Vendéglátás", |
|||
"category:gastro-smoking": "Nem dohányzó vendéglátóhelyek", |
|||
"category:health": "Egészségügy", |
|||
"category:hiking_routes": "Turistautak", |
|||
"category:historic": "Történelmi objektumok", |
|||
"category:index": "Tartalom", |
|||
"category:infrastructure": "Infrastruktúra", |
|||
"category:internet": "Internetcsatlakozás", |
|||
"category:law": "Jog", |
|||
"category:leisure": "Szabadidő", |
|||
"category:leisure_sport_shopping": "Szabadidő, sport és vásárlás", |
|||
"category:memorial": "Emlékművek", |
|||
"category:military": "Katonai objektumok", |
|||
"category:mtb-routes": "Hegyikerékpáros útvonalak", |
|||
"category:natural": "Természeti képződmények", |
|||
"category:office": "Irodák, hivatalok", |
|||
"category:oil_gas": "Kőolaj, földgáz", |
|||
"category:organisations": "Szervezetek", |
|||
"category:other": "Egyéb", |
|||
"category:outdoor": "Szabadtéri tevékenységek", |
|||
"category:phone": "Telefon", |
|||
"category:places": "Helyek", |
|||
"category:places_geo": "Helyek", |
|||
"category:playgrounds": null, |
|||
"category:playgrounds": "Játszóterek", |
|||
"category:post": "Posta", |
|||
"category:power": "Áramellátás", |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "Megállók és állomások", |
|||
"category:public": null, |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:power_routes": "Távvezetékek", |
|||
"category:pt": "Tömegközlekedési térkép", |
|||
"category:pt:routes": "Útvonalak", |
|||
"category:pt:stops": "Megállók és állomások", |
|||
"category:pt_amenities": "Létesítmények", |
|||
"category:public": "Közszolgáltatások", |
|||
"category:railway": "Vasút", |
|||
"category:railway-electrification": "Vasút villamosítottsága", |
|||
"category:railway-infrastructure": "Vasúti infrastruktúra", |
|||
"category:railway-maxspeed": "Sebességkorlátozás", |
|||
"category:railway-routes": "Vasútvonalak", |
|||
"category:religion": "Vallás", |
|||
"category:renewables": "Megújuló energia", |
|||
"category:residential": "Lakóövezetek", |
|||
"category:resources": null, |
|||
"category:resources": "Bányászat", |
|||
"category:services": "Szolgáltatások", |
|||
"category:shop": "Vásárlás", |
|||
"category:special": "Speciális", |
|||
"category:sport": "Sport", |
|||
"category:tourism_attractions": "Túrizmus", |
|||
"category:tourism_services": "Túrizmus", |
|||
"category:transport_alternative": "Alternatív (Krékpár, Túra)", |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Szabadidő", |
|||
"category:railway": "Vasút", |
|||
"category:services": "Szolgáltatás", |
|||
"category:swimming_bathing": "Fürdőzés, úszás", |
|||
"category:tourism_attractions": "Látnivalók", |
|||
"category:tourism_services": "Szálláshelyek, turisztikai információk", |
|||
"category:transport": "Közlekedés", |
|||
"category:transport_pt": "Tömegközlekedés" |
|||
"category:transport_alternative": "Alternatív (Kerékpár, Túra)", |
|||
"category:transport_car": "Autós közlekedés", |
|||
"category:transport_cycle": "Kerékpáros közlekedés", |
|||
"category:transport_pt": "Tömegközlekedés", |
|||
"category:transport_walk": "Gyalogos közlekedés", |
|||
"category:walk_amenities": "Gyalogos létesítmények", |
|||
"category:waste": "Hulladék", |
|||
"category:water": "Vizek", |
|||
"category:wikipedia": "Wikipédia", |
|||
"category:works": "Üzemek", |
|||
"category:xmas": "Karácsony", |
|||
"date format not understood": "Felismerhetetlen dátumformátum", |
|||
"outdated feature": "Elavult információ", |
|||
"xmas:outdated-warning": "Ebben a szezonban nem frissült az objektum. Ellenőrizze, és állítsa be az <xmas:lastcheck> kulcshoz tartozó értéket a jelenlegi dátumra.", |
|||
"Objects with diet information": "Étrend-információt tartalmazó objektumok" |
|||
} |
@ -1,62 +1,93 @@ |
|||
{ |
|||
"category:administrative": null, |
|||
"category:administrative": "行政界", |
|||
"category:agriculture": "農業", |
|||
"category:alternative_amenities": "生活環境", |
|||
"category:alternative_routes": "ルート", |
|||
"category:buildings": null, |
|||
"category:buildings": "建物", |
|||
"category:buildings-entrances": "エントランス", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "建物の高さ", |
|||
"category:buildings-start_date": "築年数", |
|||
"category:buildings-type": "建物の種類", |
|||
"category:car_amenities": "生活環境", |
|||
"category:car_furniture": "街路設置公共物", |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:communication": "交流", |
|||
"category:car_maxspeed": "最高速度", |
|||
"category:car_routes": "車のルート", |
|||
"category:children": "子ども用施設", |
|||
"category:coal": "石炭", |
|||
"category:communication": "情報通信", |
|||
"category:construction": "工事中", |
|||
"category:craft": "職人", |
|||
"category:culture": "文化", |
|||
"category:culture_religion": "文化", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:culture_religion": "文化と宗教", |
|||
"category:cycle_amenities": "アメニティ", |
|||
"category:cycle_routes": "自転車ルート", |
|||
"category:education": "教育サービス", |
|||
"category:electric_power": "電力", |
|||
"category:emergency": "緊急サービス", |
|||
"category:energy": "エネルギー", |
|||
"category:financial": "金融", |
|||
"category:gastro": "食べ物", |
|||
"category:gastro-smoking": "禁煙の飲食店", |
|||
"category:health": "健康", |
|||
"category:hiking_routes": null, |
|||
"category:historic": "記念", |
|||
"category:index": null, |
|||
"category:hiking_routes": "ハイキングルート", |
|||
"category:historic": "歴史", |
|||
"category:index": "", |
|||
"category:infrastructure": "インフラ", |
|||
"category:internet": "インターネット接続", |
|||
"category:law": "法律", |
|||
"category:leisure": "レジャー", |
|||
"category:leisure_sport_shopping": "レジャー", |
|||
"category:memorial": "記念碑", |
|||
"category:military": "軍事", |
|||
"category:mtb-routes": "マウンテンバイクのルート", |
|||
"category:natural": "自然地層", |
|||
"category:office": "オフィス", |
|||
"category:oil_gas": "石油と天然ガス", |
|||
"category:organisations": "組織", |
|||
"category:other": "その他", |
|||
"category:outdoor": "アウトドア活動", |
|||
"category:phone": "電話", |
|||
"category:places": "場所", |
|||
"category:places_geo": "場所", |
|||
"category:playgrounds": null, |
|||
"category:playgrounds": "遊び場", |
|||
"category:post": "郵便", |
|||
"category:power": "電力", |
|||
"category:power_routes": "電線のルート", |
|||
"category:pt": "公共交通地図", |
|||
"category:pt:routes": "ルート", |
|||
"category:pt:stops": "停留所と駅", |
|||
"category:pt_amenities": "生活環境", |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "停留所と駅", |
|||
"category:public": "公共サービス", |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:railway": "鉄道", |
|||
"category:railway-electrification": "鉄道の電力", |
|||
"category:railway-infrastructure": "鉄道インフラ", |
|||
"category:railway-maxspeed": "鉄道の最高速度", |
|||
"category:railway-routes": "鉄道ルート", |
|||
"category:religion": "宗教", |
|||
"category:renewables": "", |
|||
"category:residential": "住居エリア", |
|||
"category:resources": null, |
|||
"category:resources": "", |
|||
"category:services": "サービス", |
|||
"category:shop": "ショッピング", |
|||
"category:special": "特別", |
|||
"category:sport": "スポーツ", |
|||
"category:swimming_bathing": "水泳と入浴", |
|||
"category:tourism_attractions": "観光", |
|||
"category:tourism_services": "観光", |
|||
"category:transport": "輸送", |
|||
"category:transport_alternative": "その他交通 (サイクリング、ハイキング、...)", |
|||
"category:walk_amenities": null, |
|||
"category:transport_car": "個人輸送機関", |
|||
"category:transport_cycle": "サイクリング", |
|||
"category:transport_pt": "公共輸送", |
|||
"category:transport_walk": "ウォーキング", |
|||
"category:walk_amenities": "アメニティ", |
|||
"category:waste": "処理場", |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:water": "水系", |
|||
"category:wikipedia": "ウィキペディア", |
|||
"category:works": "工場", |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "レジャー", |
|||
"category:railway": "鉄道", |
|||
"category:services": "サービス", |
|||
"category:transport": "輸送", |
|||
"category:transport_car": "個人輸送機関", |
|||
"category:transport_pt": "公共輸送" |
|||
"category:xmas": "クリスマス", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "今のシーズンは地物が更新されていません! チェックして現在の日付に'xmas:lastcheck' タグをセットしてください。", |
|||
"Objects with diet information": "食事制限情報のあるオブジェクト" |
|||
} |
@ -1,61 +1,92 @@ |
|||
{ |
|||
"category:administrative": null, |
|||
"category:agriculture": null, |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:administrative": "", |
|||
"category:agriculture": "", |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "Elementy drogowe", |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:communication": null, |
|||
"category:construction": null, |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "", |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Kultura", |
|||
"category:culture_religion": "Kultura", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "Edukacyjne", |
|||
"category:emergency": null, |
|||
"category:electric_power": "", |
|||
"category:emergency": "", |
|||
"category:energy": "", |
|||
"category:financial": "Finasowe", |
|||
"category:gastro": "Gastronomia", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "Zdrowie", |
|||
"category:hiking_routes": null, |
|||
"category:hiking_routes": "", |
|||
"category:historic": "Miejsca Historyczne", |
|||
"category:index": null, |
|||
"category:internet": null, |
|||
"category:leisure": null, |
|||
"category:military": null, |
|||
"category:natural": null, |
|||
"category:other": null, |
|||
"category:phone": null, |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "", |
|||
"category:law": "", |
|||
"category:leisure": "", |
|||
"category:leisure_sport_shopping": "Wypoczynek, Sport i Zakupy", |
|||
"category:memorial": "", |
|||
"category:military": "", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "", |
|||
"category:outdoor": "", |
|||
"category:phone": "", |
|||
"category:places": "Miejsca", |
|||
"category:places_geo": "Miejsca", |
|||
"category:playgrounds": null, |
|||
"category:post": null, |
|||
"category:power": null, |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "Przystanki i Stacje", |
|||
"category:public": null, |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:religion": null, |
|||
"category:residential": null, |
|||
"category:resources": null, |
|||
"category:playgrounds": "", |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "Przystanki i Stacje", |
|||
"category:pt_amenities": "", |
|||
"category:public": "", |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "", |
|||
"category:renewables": "", |
|||
"category:residential": "", |
|||
"category:resources": "", |
|||
"category:services": "Usługi", |
|||
"category:shop": "Zakupy", |
|||
"category:sport": null, |
|||
"category:special": "", |
|||
"category:sport": "", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Turystyka", |
|||
"category:tourism_services": "Turystyka", |
|||
"category:transport_alternative": null, |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Wypoczynek, Sport i Zakupy", |
|||
"category:services": "Usługi", |
|||
"category:transport": "Transport", |
|||
"category:transport_alternative": "", |
|||
"category:transport_car": "Transport Indywidualny", |
|||
"category:transport_pt": "Transport Publiczny" |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "Transport Publiczny", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -0,0 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Divisão político-administrativa", |
|||
"category:agriculture": "Agricultura", |
|||
"category:alternative_amenities": "Equipamentos", |
|||
"category:alternative_routes": "Rotas", |
|||
"category:buildings": "Edificações", |
|||
"category:buildings-entrances": "Acessos", |
|||
"category:buildings-figure-ground": "Cheios e vazios", |
|||
"category:buildings-height": "Altura", |
|||
"category:buildings-start_date": "Idade", |
|||
"category:buildings-type": "Tipologias", |
|||
"category:car_amenities": "Equipamentos", |
|||
"category:car_furniture": "Mobiliário urbano", |
|||
"category:car_maxspeed": "Velocidade máxima", |
|||
"category:car_routes": "Rotas rodoviárias", |
|||
"category:children": "Equipamentos infantis", |
|||
"category:coal": "Carvão", |
|||
"category:communication": "Comunicação", |
|||
"category:construction": "Terrenos vazios e obras", |
|||
"category:craft": "Ofícios", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura", |
|||
"category:cycle_amenities": "Equipamentos", |
|||
"category:cycle_routes": "Ciclorrotas", |
|||
"category:education": "Educação", |
|||
"category:electric_power": "Energia elétrica", |
|||
"category:emergency": "Emergência", |
|||
"category:energy": "Energia", |
|||
"category:financial": "Finanças", |
|||
"category:gastro": "Gastronomia", |
|||
"category:gastro-smoking": "Gastronomia sem fumo", |
|||
"category:health": "Saúde e assistência", |
|||
"category:hiking_routes": "Rotas de caminhada", |
|||
"category:historic": "Histórico", |
|||
"category:index": "Índice", |
|||
"category:infrastructure": "Infraestrutura", |
|||
"category:internet": "Acesso à Internet", |
|||
"category:law": "Direito", |
|||
"category:leisure": "Lazer", |
|||
"category:leisure_sport_shopping": "Lazer, esportes e compras", |
|||
"category:memorial": "Memoriais", |
|||
"category:military": "Militar", |
|||
"category:mtb-routes": "Rotas de mountain bike", |
|||
"category:natural": "Formações naturais", |
|||
"category:office": "Escritórios e agências", |
|||
"category:oil_gas": "Petróleo e gás", |
|||
"category:organisations": "Organizações", |
|||
"category:other": "Outros", |
|||
"category:outdoor": "Atividades ao ar livre", |
|||
"category:phone": "Telefone", |
|||
"category:places": "Lugares", |
|||
"category:places_geo": "Lugares", |
|||
"category:playgrounds": "Parquinhos", |
|||
"category:post": "Correios", |
|||
"category:power_routes": "Rotas energéticas", |
|||
"category:pt": "Mapa de transporte público", |
|||
"category:pt:routes": "Rotas", |
|||
"category:pt:stops": "Paradas e estações", |
|||
"category:pt_amenities": "Equipamentos", |
|||
"category:public": "Utilidade pública", |
|||
"category:railway": "Ferrovia", |
|||
"category:railway-electrification": "Eletrificação ferroviária", |
|||
"category:railway-infrastructure": "Infraestrutura ferroviária", |
|||
"category:railway-maxspeed": "Velocidade máxima", |
|||
"category:railway-routes": "Rotas ferroviárias", |
|||
"category:religion": "Religião", |
|||
"category:renewables": "Renováveis", |
|||
"category:residential": "Áreas residenciais", |
|||
"category:resources": "Extração de recursos", |
|||
"category:services": "Prestação de serviços", |
|||
"category:shop": "Compras", |
|||
"category:special": "Especial", |
|||
"category:sport": "Esportes", |
|||
"category:swimming_bathing": "Natação e banho", |
|||
"category:tourism_attractions": "Turismo", |
|||
"category:tourism_services": "Serviços turísticos", |
|||
"category:transport": "Mobilidade", |
|||
"category:transport_alternative": "Transporte alternativo", |
|||
"category:transport_car": "Tráfego individual", |
|||
"category:transport_cycle": "Ciclismo", |
|||
"category:transport_pt": "Transporte público", |
|||
"category:transport_walk": "Pedestre", |
|||
"category:walk_amenities": "Equipamentos", |
|||
"category:waste": "Lixo", |
|||
"category:water": "Hidrografia", |
|||
"category:wikipedia": "Wikipédia", |
|||
"category:works": "Produção", |
|||
"category:xmas": "Natal", |
|||
"date format not understood": "", |
|||
"outdated feature": "Objeto antigo", |
|||
"xmas:outdated-warning": "O objeto não foi atualizado para a temporada atual! Por favor, verifique e defina a tag 'xmas:lastcheck' para a data atual." |
|||
} |
@ -0,0 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Regiões administrativas", |
|||
"category:agriculture": "Agricultura", |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "Rotas", |
|||
"category:buildings": "Edifícios", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "Mobiliário urbano", |
|||
"category:car_maxspeed": "Velocidade máxima", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Comunicação", |
|||
"category:construction": "Locais de construção", |
|||
"category:craft": "Artesanato", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura e religião", |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "Ciclovias", |
|||
"category:education": "Educação", |
|||
"category:electric_power": "Eletricidade", |
|||
"category:emergency": "Emergência", |
|||
"category:energy": "", |
|||
"category:financial": "Finanças", |
|||
"category:gastro": "Restauração", |
|||
"category:gastro-smoking": "Restauração livre de tabaco", |
|||
"category:health": "Saúde", |
|||
"category:hiking_routes": "Rotas de caminhada", |
|||
"category:historic": "Histórico", |
|||
"category:index": "", |
|||
"category:infrastructure": "Infraestrutura", |
|||
"category:internet": "Acesso à Internet", |
|||
"category:law": "", |
|||
"category:leisure": "Lazer", |
|||
"category:leisure_sport_shopping": "Lazer, desporto e compras", |
|||
"category:memorial": "", |
|||
"category:military": "Militar", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "Formações naturais", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "Outros", |
|||
"category:outdoor": "", |
|||
"category:phone": "Telefone", |
|||
"category:places": "Lugares", |
|||
"category:places_geo": "Lugares", |
|||
"category:playgrounds": "Parques infantis", |
|||
"category:post": "Correios", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "Rotas", |
|||
"category:pt:stops": "", |
|||
"category:pt_amenities": "", |
|||
"category:public": "Serviços públicos", |
|||
"category:railway": "Linhas ferroviárias", |
|||
"category:railway-electrification": "Eletrificação ferroviária", |
|||
"category:railway-infrastructure": "Infraestrutura ferroviária", |
|||
"category:railway-maxspeed": "Velocidade máxima", |
|||
"category:railway-routes": "", |
|||
"category:religion": "Religião", |
|||
"category:renewables": "", |
|||
"category:residential": "Áreas residenciais", |
|||
"category:resources": "Extração de recursos", |
|||
"category:services": "Serviços", |
|||
"category:shop": "Compras", |
|||
"category:special": "Especial", |
|||
"category:sport": "Desporto", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Turismo", |
|||
"category:tourism_services": "Turismo", |
|||
"category:transport": "Transportes", |
|||
"category:transport_alternative": "", |
|||
"category:transport_car": "Transporte individual", |
|||
"category:transport_cycle": "Ciclismo", |
|||
"category:transport_pt": "Transportes públicos", |
|||
"category:transport_walk": "Pedestre", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "Lixo", |
|||
"category:water": "Massas de água", |
|||
"category:wikipedia": "Wikipédia", |
|||
"category:works": "Fábricas", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -1,61 +1,92 @@ |
|||
{ |
|||
"category:administrative": "Zona administrativa", |
|||
"category:agriculture": "Agricultura", |
|||
"category:alternative_amenities": null, |
|||
"category:alternative_routes": null, |
|||
"category:buildings": null, |
|||
"category:car_amenities": null, |
|||
"category:car_furniture": null, |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "", |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Comunicatii", |
|||
"category:construction": null, |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Cultura", |
|||
"category:culture_religion": "Cultura", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "Servicii educatie", |
|||
"category:electric_power": "Energie", |
|||
"category:emergency": "Servicii urgenta", |
|||
"category:energy": "", |
|||
"category:financial": "Financiar", |
|||
"category:gastro": "Gastronomie", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "Sanatate", |
|||
"category:hiking_routes": null, |
|||
"category:hiking_routes": "", |
|||
"category:historic": "Istoric", |
|||
"category:index": null, |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "Acces internet", |
|||
"category:law": "", |
|||
"category:leisure": "Timp liber", |
|||
"category:leisure_sport_shopping": "Timp liber, Sport si Cumparaturi", |
|||
"category:memorial": "", |
|||
"category:military": "Militar", |
|||
"category:natural": null, |
|||
"category:mtb-routes": "", |
|||
"category:natural": "", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "Altele", |
|||
"category:outdoor": "", |
|||
"category:phone": "Telefon", |
|||
"category:places": "Locuri", |
|||
"category:places_geo": "Locuri", |
|||
"category:playgrounds": "Loc de joaca", |
|||
"category:post": null, |
|||
"category:power": "Energie", |
|||
"category:pt_amenities": null, |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": null, |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "", |
|||
"category:pt_amenities": "", |
|||
"category:public": "Servicii publice", |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "Religie", |
|||
"category:renewables": "", |
|||
"category:residential": "Zona rezidentiala", |
|||
"category:resources": null, |
|||
"category:resources": "", |
|||
"category:services": "Servicii", |
|||
"category:shop": "Cumpărături", |
|||
"category:sport": null, |
|||
"category:special": "", |
|||
"category:sport": "", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Turism", |
|||
"category:tourism_services": "Turism", |
|||
"category:transport_alternative": "Alternativ(Bicicleta,Drumetii)", |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Timp liber, Sport si Cumparaturi", |
|||
"category:services": "Servicii", |
|||
"category:transport": "Transport", |
|||
"category:transport_alternative": "Alternativ(Bicicleta,Drumetii)", |
|||
"category:transport_car": "Trafic individual", |
|||
"category:transport_pt": "Transport public" |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "Transport public", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -0,0 +1,92 @@ |
|||
{ |
|||
"category:administrative": "", |
|||
"category:agriculture": "", |
|||
"category:alternative_amenities": "", |
|||
"category:alternative_routes": "", |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "", |
|||
"category:car_furniture": "", |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "", |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "", |
|||
"category:culture_religion": "", |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "", |
|||
"category:electric_power": "", |
|||
"category:emergency": "", |
|||
"category:energy": "", |
|||
"category:financial": "", |
|||
"category:gastro": "", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "", |
|||
"category:hiking_routes": "", |
|||
"category:historic": "", |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "", |
|||
"category:law": "", |
|||
"category:leisure": "", |
|||
"category:leisure_sport_shopping": "", |
|||
"category:memorial": "", |
|||
"category:military": "", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "", |
|||
"category:outdoor": "", |
|||
"category:phone": "", |
|||
"category:places": "", |
|||
"category:places_geo": "", |
|||
"category:playgrounds": "", |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "", |
|||
"category:pt_amenities": "", |
|||
"category:public": "", |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "", |
|||
"category:renewables": "", |
|||
"category:residential": "", |
|||
"category:resources": "", |
|||
"category:services": "", |
|||
"category:shop": "", |
|||
"category:special": "", |
|||
"category:sport": "", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "", |
|||
"category:tourism_services": "", |
|||
"category:transport": "", |
|||
"category:transport_alternative": "", |
|||
"category:transport_car": "", |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -1,61 +1,92 @@ |
|||
{ |
|||
"category:administrative": null, |
|||
"category:agriculture": null, |
|||
"category:administrative": "", |
|||
"category:agriculture": "", |
|||
"category:alternative_amenities": "Amenities", |
|||
"category:alternative_routes": "Маршрути", |
|||
"category:buildings": null, |
|||
"category:buildings": "", |
|||
"category:buildings-entrances": "", |
|||
"category:buildings-figure-ground": "", |
|||
"category:buildings-height": "", |
|||
"category:buildings-start_date": "", |
|||
"category:buildings-type": "", |
|||
"category:car_amenities": "Amenities", |
|||
"category:car_furniture": "Street Furniture", |
|||
"category:car_maxspeed": null, |
|||
"category:children": null, |
|||
"category:car_maxspeed": "", |
|||
"category:car_routes": "", |
|||
"category:children": "", |
|||
"category:coal": "", |
|||
"category:communication": "Телекомунікації", |
|||
"category:construction": null, |
|||
"category:construction": "", |
|||
"category:craft": "", |
|||
"category:culture": "Культура ", |
|||
"category:culture_religion": "Культура ", |
|||
"category:cycle_amenities": null, |
|||
"category:cycle_routes": null, |
|||
"category:cycle_amenities": "", |
|||
"category:cycle_routes": "", |
|||
"category:education": "Освіта", |
|||
"category:electric_power": "", |
|||
"category:emergency": "Швидка допомога", |
|||
"category:energy": "", |
|||
"category:financial": "Фінанси", |
|||
"category:gastro": "Гастрономія", |
|||
"category:gastro-smoking": "", |
|||
"category:health": "Здоров'я", |
|||
"category:hiking_routes": null, |
|||
"category:hiking_routes": "", |
|||
"category:historic": "Історія", |
|||
"category:index": null, |
|||
"category:internet": null, |
|||
"category:index": "", |
|||
"category:infrastructure": "", |
|||
"category:internet": "", |
|||
"category:law": "", |
|||
"category:leisure": "Дозвілля", |
|||
"category:military": null, |
|||
"category:leisure_sport_shopping": "Дозвілля", |
|||
"category:memorial": "", |
|||
"category:military": "", |
|||
"category:mtb-routes": "", |
|||
"category:natural": "Природне середовище", |
|||
"category:office": "", |
|||
"category:oil_gas": "", |
|||
"category:organisations": "", |
|||
"category:other": "Інше", |
|||
"category:phone": null, |
|||
"category:outdoor": "", |
|||
"category:phone": "", |
|||
"category:places": "Місцевість", |
|||
"category:places_geo": "Місцевість", |
|||
"category:playgrounds": "Дитячий майданчик", |
|||
"category:post": null, |
|||
"category:power": null, |
|||
"category:post": "", |
|||
"category:power_routes": "", |
|||
"category:pt": "", |
|||
"category:pt:routes": "", |
|||
"category:pt:stops": "Зупинки та станції", |
|||
"category:pt_amenities": "Amenities", |
|||
"category:pt_routes": null, |
|||
"category:pt_stops": "Зупинки та станції", |
|||
"category:public": "Громадські місця", |
|||
"category:railway-electrification": null, |
|||
"category:railway-infrastructure": null, |
|||
"category:railway": "", |
|||
"category:railway-electrification": "", |
|||
"category:railway-infrastructure": "", |
|||
"category:railway-maxspeed": "", |
|||
"category:railway-routes": "", |
|||
"category:religion": "Релігія", |
|||
"category:renewables": "", |
|||
"category:residential": "Житлова зона", |
|||
"category:resources": null, |
|||
"category:resources": "", |
|||
"category:services": "Послуги", |
|||
"category:shop": "Торгівля", |
|||
"category:special": "", |
|||
"category:sport": "Спорт. Інше.", |
|||
"category:swimming_bathing": "", |
|||
"category:tourism_attractions": "Туризм", |
|||
"category:tourism_services": "Туризм", |
|||
"category:transport_alternative": "Інші (Велосипедні, піші, ...)", |
|||
"category:walk_amenities": null, |
|||
"category:waste": null, |
|||
"category:water": null, |
|||
"category:wikipedia": null, |
|||
"category:works": null, |
|||
"category:cycle_infrastructure": null, |
|||
"category:leisure_sport_shopping": "Дозвілля", |
|||
"category:services": "Послуги", |
|||
"category:transport": "Транспорт", |
|||
"category:transport_alternative": "Інші (Велосипедні, піші, ...)", |
|||
"category:transport_car": "Приватний транспорт", |
|||
"category:transport_pt": "Громадський транспорт" |
|||
"category:transport_cycle": "", |
|||
"category:transport_pt": "Громадський транспорт", |
|||
"category:transport_walk": "", |
|||
"category:walk_amenities": "", |
|||
"category:waste": "", |
|||
"category:water": "", |
|||
"category:wikipedia": "", |
|||
"category:works": "", |
|||
"category:xmas": "", |
|||
"date format not understood": "", |
|||
"outdated feature": "", |
|||
"xmas:outdated-warning": "" |
|||
} |
@ -0,0 +1,69 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Law", |
|||
"fr": "Services législatifs", |
|||
"pt-br": "Direito" |
|||
}, |
|||
"query": { |
|||
"14": [ |
|||
"(", |
|||
"node[amenity~\"^(courthouse)$\"];", |
|||
"way[amenity~\"^(courthouse)$\"];", |
|||
"relation[amenity~\"^(courthouse)$\"];", |
|||
"node[office~\"^(lawyer|notary)$\"];", |
|||
"way[office~\"^(lawyer|notary)$\"];", |
|||
"relation[office~\"^(lawyer|notary)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% if tags.amenity %}", |
|||
" {% set key = 'amenity' %}", |
|||
" {% set value = tags.amenity %}", |
|||
"{% else %}", |
|||
" {% set key = 'office' %}", |
|||
" {% set value = tags.office %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": "{{ tagTrans(key, value) }}", |
|||
"markerSign": "{{ const[key ~ '=' ~ value].sign|raw }}" |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for kv, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td>", |
|||
" {{ tagTrans(kv|split('=')[0], kv|split('=')[1]) }}", |
|||
" </td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"amenity=courthouse": { |
|||
"sign": "<i class=\"fas fa-gavel\"></i>", |
|||
"zoom": 14 |
|||
}, |
|||
"office=lawyer": { |
|||
"sign": "⚖", |
|||
"zoom": 14 |
|||
}, |
|||
"office=notary": { |
|||
"sign": "<i class=\"fas fa-file-signature\"></i>", |
|||
"zoom": 14 |
|||
} |
|||
}, |
|||
"filter": { |
|||
"type": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"show_default": "true", |
|||
"type": "select", |
|||
"values": "{% for k, v in const %}<option value=\"{{ k }}\" query=\"nwr[{{ k }}]\" minzoom=\"{{ v.zoom }}\">{{ tagTrans(k) }}</option>{% endfor %}" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,166 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Denkmäler", |
|||
"en": "Memorials", |
|||
"fr": "Mémoriaux", |
|||
"hu": "Emlékművek", |
|||
"pt-br": "Memoriais" |
|||
}, |
|||
"query": { |
|||
"11": [ |
|||
"(", |
|||
"node[historic~\"^(monument)$\"];", |
|||
"way[historic~\"^(monument)$\"];", |
|||
"relation[historic~\"^(monument)$\"];", |
|||
")" |
|||
], |
|||
"14": [ |
|||
"(", |
|||
"node[historic~\"^(memorial|monument)$\"];", |
|||
"way[historic~\"^(memorial|monument)$\"];", |
|||
"relation[historic~\"^(memorial|monument)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set value = tags.historic %}", |
|||
"{% if tags.historic == 'memorial' and tags.memorial %}", |
|||
" {% set value = tags.historic ~ ' memorial=' ~ tags.memorial %}", |
|||
"{% elseif tags.historic == 'memorial' and attribute(tags, 'memorial:type') %}", |
|||
" {% set value = tags.historic ~ ' memorial=' ~ attribute(tags, 'memorial:type') %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": "{{ tagTransList('historic', value) }}", |
|||
"body": [ |
|||
"<ul>", |
|||
"{% if tags.inscription %}", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-pencil-alt\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('inscription') }}:</span>", |
|||
" <span class='value'>{{ localizedTag(tags, 'inscription') }}</span>", |
|||
" </li>", |
|||
"{% elseif attribute(tags, 'inscription:url') %}", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-pencil-alt\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'><a href=\"{{ attribute(tags, 'inscription:url') }}\">{{ keyTrans('inscription') }}</a></span>", |
|||
" </li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'historic:civilization') %}", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-users\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('historic:civilization') }}:</span>", |
|||
" <span class='value'>{{ tagTrans('historic:civilization', attribute(tags, 'historic:civilization')) }}</span>", |
|||
" </li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'memorial:conflict') %}", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-bolt\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('memorial:conflict') }}:</span>", |
|||
" <span class='value'>{{ tagTransList('memorial:conflict', attribute(tags, 'memorial:conflict')) }}</span>", |
|||
" </li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if tags.artist_name %}", |
|||
" <li class='hasSymbol'>", |
|||
" <i class=\"fa fa-palette\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('artist_name') }}:</span>", |
|||
" <span class='value'>{{ enumerate(tags.artist_name) }}</span>", |
|||
" </li>", |
|||
"{% endif %}", |
|||
"</ul>" |
|||
], |
|||
"markerSign": "{{ const[value].sign|raw }}" |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for value, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td>{{ tagTrans('historic', value) }}</td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"{% if 14 <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'></div></td>", |
|||
" <td>{{ trans('other') }}</td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"memorial": { |
|||
"sign": "<span style='position: relative; top: -2px;'><img src='maki:monument?size=11'></span>", |
|||
"zoom": 14 |
|||
}, |
|||
"memorial memorial=plaque": { |
|||
"sign": "", |
|||
"zoom": 14 |
|||
}, |
|||
"monument": { |
|||
"sign": "<img data-src='maki:monument?size=15'>", |
|||
"zoom": 11 |
|||
} |
|||
}, |
|||
"filter": { |
|||
"type": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"type": "select", |
|||
"values": { |
|||
"monument": { |
|||
"name": "{{ tagTrans('historic', 'monument') }}", |
|||
"query": "nwr[historic=monument]" |
|||
}, |
|||
"memorial": { |
|||
"name": "{{ tagTrans('historic', 'memorial') }}", |
|||
"query": "nwr[historic=memorial]" |
|||
}, |
|||
"stolperstein": { |
|||
"name": "{{ tagTrans('historic', 'memorial memorial=stolperstein') }}", |
|||
"query": "(nwr[memorial=stolperstein];nwr[\"memorial:type\"=stolperstein];)" |
|||
} |
|||
} |
|||
}, |
|||
"conflict": { |
|||
"key": "memorial:conflict", |
|||
"op": "has", |
|||
"name": "{{ keyTrans('memorial:conflict') }}", |
|||
"type": "select", |
|||
"values": [ |
|||
"WW1", |
|||
"WW2" |
|||
], |
|||
"valueName": "{{ tagTrans('memorial:conflict', value) }}" |
|||
}, |
|||
"civilization": { |
|||
"key": "historic:civilization", |
|||
"op": "has", |
|||
"name": "{{ keyTrans('historic:civilization') }}", |
|||
"type": "select", |
|||
"values": [ |
|||
"ancient_egyptian", |
|||
"ancient_greek", |
|||
"ancient_roman", |
|||
"byzantine", |
|||
"celtic", |
|||
"etruscan", |
|||
"imperial_chinese", |
|||
"korean", |
|||
"medieval", |
|||
"modern", |
|||
"neolithic", |
|||
"nuragic", |
|||
"ottoman", |
|||
"prehistoric", |
|||
"roman", |
|||
"western_roman" |
|||
], |
|||
"valueName": "{{ tagTrans('historic:civilization', value) }}" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,53 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Mountain bike routes", |
|||
"fr": "Itinéraires de VTT", |
|||
"hu": "Hegyikerékpáros útvonalak", |
|||
"pt-br": "Rotas de mountain bike" |
|||
}, |
|||
"query": { |
|||
"13": "relation[type=route][route=mtb]" |
|||
}, |
|||
"members": true, |
|||
"feature": { |
|||
"description": "{{ tagTrans('route', 'mtb') }}", |
|||
"listMarkerSymbol": "{{ markerLine({ 'width': 4, 'color': '#007fff' })|raw }}", |
|||
"title": "{% if tags.ref and tags.name %}{{ tags.ref }} - {{ tags.name }}{% elseif tags.ref %}{{ tags.ref }}{% elseif tags.name %}{{ tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}", |
|||
"styles": "", |
|||
"markerSymbol": "" |
|||
}, |
|||
"memberFeature": { |
|||
"pre": [ |
|||
"{% set refs = [] %}", |
|||
"", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.ref %}", |
|||
" {% set refs = refs|merge([ master.tags.ref ]) %}", |
|||
" {% endif %}", |
|||
"{% endfor %}" |
|||
], |
|||
"body": [ |
|||
"<h4>Routes</h4>", |
|||
"<ul class='overpass-layer-list'>", |
|||
"{% for master in masters %}", |
|||
" <li data-object=\"{{ master.id }}\">", |
|||
" <span class='markerParent'><div class='marker'>{{ markerLine({ width: 4, color: '#007fff' })|raw }}</div></span>", |
|||
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}</span>", |
|||
" <span class='description'>{{ tagTrans('route', 'mtb') }}</span>", |
|||
" </li>", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"listExclude": "1", |
|||
"style": { |
|||
"color": "#007fff", |
|||
"width": 4, |
|||
"opacity": 1, |
|||
"text": "{{ refs|join(' · ') }} ", |
|||
"textRepeat": "1", |
|||
"textOffset": "12", |
|||
"textFontWeight": "bold" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,55 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Ämter, Dienst- und Geschäftsstellen", |
|||
"en": "Offices", |
|||
"fr": "Bureaux", |
|||
"hu": "Irodák, hivatalok", |
|||
"pt-br": "Escritórios e agências" |
|||
}, |
|||
"query": { |
|||
"14": "nwr[office]" |
|||
}, |
|||
"feature": { |
|||
"description": [ |
|||
"{{ tagTrans('office', tags.office) }}", |
|||
"{% if tags.office == 'government' and tags.government %}({{ tagTrans('government', tags.government) }}){% endif %}" |
|||
], |
|||
"markerSign": "{{ const[tags.office]|raw }}" |
|||
}, |
|||
"const": { |
|||
"government": "<i class='fas fa-landmark'></i>", |
|||
"company": "<i class='fas fa-building'></i>", |
|||
"estate_agent": "<i class='fas fa-home'></i>", |
|||
"insurance": "<i class='fas fa-file-signature'></i>", |
|||
"lawyer": "<i class='fas fa-gavel'></i>", |
|||
"educational_institution": "<i class='fas fa-school'></i>", |
|||
"administrative": "<i class='fas fa-landmark'></i>", |
|||
"telecommunication": "<i class='fas fa-phone'></i>", |
|||
"ngo": "<i class='fas fa-people-carry'></i>", |
|||
"quango": "<i class='fas fa-people-carry'></i>", |
|||
"association": "<i class='fas fa-people-carry'></i>", |
|||
"it": "<i class='fas fa-desktop'></i>", |
|||
"accountant": "<i class='fas fa-money-bill-alt'></i>", |
|||
"tax_advisor": "<i class='fas fa-money-bill-alt'></i>", |
|||
"employment_agency": "<i class='fas fa-user'></i>", |
|||
"research": "<i class='fas fa-flask'></i>", |
|||
"religion": "<i class='fas fa-pray'></i>", |
|||
"architect": "<i class='fas fa-torii-gate'></i>", |
|||
"financial": "<i class='fas fa-money-bill'></i>", |
|||
"newspaper": "<i class='fas fa-newspaper'></i>", |
|||
"political_party": "<i class='fas fa-flag'></i>", |
|||
"advertising_agency": "<i class='fas fa-ad'></i>", |
|||
"therapist": "<i class='fas fa-couch'></i>", |
|||
"travel_agent": "<i class='fas fa-plane-departure'></i>", |
|||
"publisher": "<i class='fas fa-book'></i>" |
|||
}, |
|||
"filter": { |
|||
"type": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"show_default": "true", |
|||
"type": "select", |
|||
"values": "{% for k, v in const %}<option value=\"{{ k }}\" query=\"nwr[{{ k }}]\" minzoom=\"{{ v.zoom }}\">{{ tagTrans('office', k) }}</option>{% endfor %}" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,67 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Erdöl und Erdgas", |
|||
"en": "Petroleum and natural gas", |
|||
"fr": "Pétrole et gaz naturel", |
|||
"hu": "Kőolaj, földgáz", |
|||
"pt-br": "Petróleo e gás" |
|||
}, |
|||
"query": { |
|||
"11": [ |
|||
"(", |
|||
"way[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"relation[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"node[landuse=industrial][industrial~\"^(|.*;)(refinery)(|;.*)$\"];", |
|||
"way[landuse=industrial][industrial~\"^(|.*;)(refinery)(|;.*)$\"];", |
|||
"relation[landuse=industrial][industrial~\"^(|.*;)(refinery)(|;.*)$\"];", |
|||
"way[waterway=offshore_field];", |
|||
"relation[waterway=offshore_field];", |
|||
"node[man_made~\"^(offshore_platform)$\"];", |
|||
"way[man_made~\"^(offshore_platform)$\"];", |
|||
"relation[man_made~\"^(offshore_platform)$\"];", |
|||
"node[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
"way[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
"relation[power~\"^(plant)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
")" |
|||
], |
|||
"13": [ |
|||
"(", |
|||
"way[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"relation[man_made~\"^(pipeline|goods_conveyor)$\"][substance~\"^(|.*;)(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"node[landuse=industrial][industrial~\"^(|.*;)(oil|gas|lng|cng|multiphase|refinery|oil_refinery)(|;.*)$\"];", |
|||
"way[landuse=industrial][industrial~\"^(|.*;)(oil|gas|lng|cng|multiphase|refinery|oil_refinery)(|;.*)$\"];", |
|||
"relation[landuse=industrial][industrial~\"^(|.*;)(oil|gas|lng|cng|multiphase|refinery|oil_refinery)(|;.*)$\"];", |
|||
"way[waterway=offshore_field];", |
|||
"relation[waterway=offshore_field];", |
|||
"node[man_made~\"^(petroleum_well|offshore_platform|gasometer|oil_tank|gas_cavern)$\"];", |
|||
"node[man_made~\"^(storage_tank)$\"][contents~\"^(oil|gas|lng|cng|multiphase)$\"];", |
|||
"way[man_made~\"^(petroleum_well|offshore_platform|gasometer|oil_tank|gas_cavern)$\"];", |
|||
"way[man_made~\"^(storage_tank)$\"][contents~\"^(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"relation[man_made~\"^(petroleum_well|offshore_platform|gasometer|oil_tank|gas_cavern)(|;.*)$\"];", |
|||
"relation[man_made~\"^(storage_tank)$\"][contents~\"^(|.*;)(oil|gas|lng|cng|multiphase)(|;.*)$\"];", |
|||
"node[power~\"^(plant|generator)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
"way[power~\"^(plant|generator)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
"relation[power~\"^(plant|generator)$\"][\"generator:source\"~\"^(|.*;)(oil|gas|diesel|gasoline)(|;.*)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"description": [ |
|||
"{% if tags.man_made == 'pipeline' %}", |
|||
"{{ tagTrans('man_made', 'pipeline') }} ({{ tagTrans('substance', tags.substance) }})", |
|||
"{% elseif tags.man_made %}", |
|||
"{{ tagTrans('man_made', tags.man_made) }}", |
|||
"{% elseif tags.power == 'plant' %}", |
|||
"{{ tagTrans('power', 'plant') }} {% if attribute(tags, 'generator:source') %}({{ tagTransList('generator:source', attribute(tags, 'generator:source')) }}){% endif %}", |
|||
"{% elseif tags.power == 'generator' %}", |
|||
"{{ tagTrans('power', 'generator') }} {% if attribute(tags, 'generator:source') %}({{ tagTransList('generator:source', attribute(tags, 'generator:source')) }}){% endif %}", |
|||
"{% elseif tags.waterway == 'offshore_field' %}", |
|||
"{{ tagTrans('waterway', tags.waterway) }}", |
|||
"{% elseif tags.landuse == 'industrial' %}", |
|||
"{{ tagTrans('landuse', tags.landuse) }} ({{ tagTrans('industrial', tags.industrial) }})", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": null |
|||
} |
|||
} |
@ -0,0 +1,90 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Organisations", |
|||
"fr": "Organisations", |
|||
"pt-br": "Organizações" |
|||
}, |
|||
"query": { |
|||
"13": [ |
|||
"(", |
|||
"nwr[office~\"^(ngo|quango|political_party|association|charity)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set key = 'office' %}", |
|||
"{% set value = tags.office %}", |
|||
"" |
|||
], |
|||
"description": "{{ tagTrans(key, value) }}", |
|||
"body": "{% if tags.operator %}{{ keyTrans('operator') }}: {{ tags.operator }}<br/>{% endif %}", |
|||
"markerSign": [ |
|||
"{% set data = const[key ~ '=' ~ value] %}", |
|||
"{% if data %}", |
|||
"{{ data.sign|raw }}", |
|||
"{% endif %}" |
|||
], |
|||
"priority": [ |
|||
"{% set data = const[key ~ '=' ~ value] %}", |
|||
"{% if data %}", |
|||
"{{ data.priority }}", |
|||
"{% endif %}" |
|||
] |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for kv, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td>", |
|||
" {{ tagTrans(kv|split('=')[0], kv|split('=')[1]) }}", |
|||
" </td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"office=ngo": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-users'></i>", |
|||
"zoom": 13 |
|||
}, |
|||
"office=quango": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-users'></i>", |
|||
"zoom": 13 |
|||
}, |
|||
"office=political_party": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-flag'></i>", |
|||
"zoom": 13 |
|||
}, |
|||
"office=association": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-people-carry'></i>", |
|||
"zoom": 13 |
|||
}, |
|||
"office=foundation": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-people-carry'></i>", |
|||
"zoom": 13 |
|||
}, |
|||
"office=charity": { |
|||
"priority": 0, |
|||
"sign": "<i class='fas fa-hands-helping'></i>", |
|||
"zoom": 13 |
|||
} |
|||
}, |
|||
"filter": { |
|||
"type": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"show_default": "true", |
|||
"type": "select", |
|||
"values": "{% for k, v in const %}<option value=\"{{ k }}\" query=\"nwr[{{ k }}]\" minzoom=\"{{ v.zoom }}\">{{ tagTrans(k) }}</option>{% endfor %}" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
{ |
|||
"type": "index", |
|||
"name": { |
|||
"de": "Freiluftaktivitäten", |
|||
"en": "Outdoor activities", |
|||
"fr": "Activités de plein air", |
|||
"hu": "Szabadtéri tevékenységek", |
|||
"pt-br": "Atividades ao ar livre" |
|||
}, |
|||
"subCategories": [ |
|||
{ |
|||
"id": "mtb-routes" |
|||
} |
|||
] |
|||
} |
@ -0,0 +1,66 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Power routes", |
|||
"fr": "Réseaux électriques", |
|||
"hu": "Távvezetékek", |
|||
"pt-br": "Rotas energéticas" |
|||
}, |
|||
"query": { |
|||
"10": "relation[type=route][route=power]" |
|||
}, |
|||
"members": true, |
|||
"feature": { |
|||
"pre": "{% set color = '#' ~ tags.operator|default('')|md5|slice(0, 6) %}", |
|||
"description": "{% if tags.operator %}{{ tags.operator }}{% endif %}", |
|||
"title": "{% if tags.ref and tags.name %}{{ tags.ref }} - {{ tags.name }}{% elseif tags.ref %}{{ tags.ref }}{% elseif tags.name %}{{ tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}", |
|||
"listMarkerSymbol": "{{ markerLine({ 'width': 4, 'color': color })|raw }}", |
|||
"markerSymbol": "", |
|||
"styles": "" |
|||
}, |
|||
"memberFeature": { |
|||
"pre": [ |
|||
"{% set refs = [] %}", |
|||
"{% set color = '#d41d8c' %}", |
|||
"{% if tags.ref %}", |
|||
" {% for ref in tags.ref|split(';') %}", |
|||
" {% set refs = refs|merge([ ref|trim ]) %}", |
|||
" {% endfor %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.operator %}", |
|||
" {% set color = '#' ~ master.tags.operator|md5|slice(0, 6) %}", |
|||
" {% endif %}", |
|||
" {% if master.tags.ref %}", |
|||
" {% set refs = refs|merge([ master.tags.ref ]) %}", |
|||
" {% endif %}", |
|||
"{% endfor %}", |
|||
"", |
|||
"{% set refs = refs|unique|natsort({ insensitive: true }) %}" |
|||
], |
|||
"body": [ |
|||
"<h4>Routes</h4>", |
|||
"<ul>", |
|||
"{% for master in masters %}", |
|||
" {% set _color = '#' ~ master.tags.operator|default('')|md5|slice(0, 6) %}", |
|||
" <li data-object=\"{{ master.id }}\" style='list-style: none;'>", |
|||
" <span class='markerParent'><div class='marker'>{{ markerLine({ width: 4, color: _color })|raw }}</div></span>", |
|||
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}</span>", |
|||
" <span class='description'>{{ master.tags.operator }}</span>", |
|||
" </li>", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"listExclude": "1", |
|||
"style": { |
|||
"color": "{{ color }}", |
|||
"width": 4, |
|||
"opacity": 1, |
|||
"text": "{{ refs|join(' · ') }} ", |
|||
"textRepeat": "1", |
|||
"textOffset": "12", |
|||
"textFontWeight": "bold" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,283 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "ÖV Karte", |
|||
"en": "Public transport map", |
|||
"fr": "Carte des transports publics", |
|||
"hu": "Tömegközlekedési térkép", |
|||
"pt-br": "Mapa de transporte público" |
|||
}, |
|||
"query": { |
|||
"12": "relation[type=route][route~\"^(subway|monorail|ferry|train)$\"];", |
|||
"14": [ |
|||
"(", |
|||
"relation[type=route][route~\"^(subway|monorail|aerialway|bus|trolleybus|ferry|train|tram)$\"];", |
|||
"relation[type=public_transport][public_transport=stop_area];", |
|||
")" |
|||
] |
|||
}, |
|||
"lists": { |
|||
"stops": { |
|||
"prefix": "listStops", |
|||
"name": { |
|||
"ast": "Paraes y estaciones", |
|||
"cs": "Zastávky & Stanice", |
|||
"de": "Haltestellen", |
|||
"el": "Στάσεις & Σταθμοί", |
|||
"en": "Stops & Stations", |
|||
"es": "Paradas y estaciones", |
|||
"fr": "Arrêts/Stops, Stations", |
|||
"hu": "Megállók és állomások", |
|||
"it": "Stazioni e fermate", |
|||
"ja": "停留所と駅", |
|||
"nl": "Haltes en Stations", |
|||
"pl": "Przystanki i Stacje", |
|||
"pt-br": "Paradas e estações", |
|||
"ru": "Остановки и станции", |
|||
"uk": "Зупинки та станції" |
|||
} |
|||
}, |
|||
"routes": { |
|||
"prefix": "listRoutes", |
|||
"name": { |
|||
"de": "Routen", |
|||
"en": "Routes", |
|||
"fr": "Lignes", |
|||
"hu": "Útvonalak", |
|||
"pt": "Rotas", |
|||
"pt-br": "Rotas" |
|||
} |
|||
} |
|||
}, |
|||
"feature": { |
|||
"pre": "{% set isStopArea = tags.public_transport == 'stop_area' %}", |
|||
"title": [ |
|||
"{% if tags.ref %}{{ tags.ref }} - {% endif %}", |
|||
"", |
|||
"{{ localizedTag(tags, 'name') |default(localizedTag(tags, 'operator')) | default(localizedTag(tags, 'ref')) | default(trans('unnamed')) }}" |
|||
], |
|||
"description": "{{ tagTrans('route', tags.route) }}", |
|||
"body": [ |
|||
"<h4>{{ repoTrans('category:pt:stops') }}</h4><ul>", |
|||
"{% for member in members %}", |
|||
"{% if member.tags.highway == 'bus_stop' or member.tags.amenity == 'bus_station' or member.tags.amenity == 'ferry_terminal' or member.tags.railway == 'tram_stop' or member.tags.railway == 'halt' or member.tags.railway == 'station' or member.tags.aerialway == 'station' or member.tags.public_transport == 'stop_position' or member.role|slice(-4) == 'stop' %}", |
|||
"<li data-object='{{ member.id }}' data-sublayer='member'><b>{% if member.tags %}{{ member.tags.name|default(trans('unknown')) }}{% else %}<i>{{ trans('loading') }}</i>{% endif %}</li>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"markerSymbol": "", |
|||
"styles": "", |
|||
"style:hover": { |
|||
"width": "0" |
|||
}, |
|||
"style:selected": { |
|||
"width": "0" |
|||
}, |
|||
"listStopsExclude": "true", |
|||
"listRoutesMarkerSign": "{{ const[tags.route].sign|raw }}", |
|||
"listRoutesMarkerSymbol": "{{ markerCircle({fillColor:const[tags.route].color})|raw }}", |
|||
"listRoutesExclude": "{{ isStopArea }}" |
|||
}, |
|||
"members": true, |
|||
"memberFeature": { |
|||
"pre": [ |
|||
"{% set stopName = '' %}", |
|||
"{% set isStop = false %}", |
|||
"{% set stopCount = 0 %}", |
|||
"{% if tags.highway == 'bus_stop' or tags.amenity == 'bus_station' or tags.amenity == 'ferry_terminal' or tags.railway == 'tram_stop' or tags.railway == 'halt' or tags.railway == 'station' or tags.aerialway == 'station' or tags.public_transport == 'stop_position' %}{% set isStop = true %}{% endif %}", |
|||
"{% set isWay = false %}", |
|||
"{% set aRoute = null %}", |
|||
"{% set refs = [] %}", |
|||
"{% set dirForward = false %}", |
|||
"{% set dirBackward = false %}", |
|||
"{% set hover = false %}", |
|||
"{% set selected = false %}", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.public_transport == 'stop_area' %}", |
|||
" {% set stopName = master.tags.name %}", |
|||
" {% else %}", |
|||
" {% if master.role|matches('^(|.*stop)$') and isStop %}", |
|||
" {% set isStop = true %}", |
|||
" {% set stopCount = stopCount + 1 %}", |
|||
" {% elseif master.role|matches('^(|forward|backward)$') and type == 'way' %}", |
|||
" {% set isWay = true %}", |
|||
" {% endif %}", |
|||
" {% set aRoute = master %}", |
|||
"", |
|||
" {% if master.tags.ref %}", |
|||
" {% set refs = refs|merge([ master.tags.ref ]) %}", |
|||
" {% endif %}", |
|||
" {% if master.dir == 'forward' %}{% set dirForward = true %}", |
|||
" {% elseif master.dir == 'backward' %}{% set dirBackward = true %}", |
|||
" {% else %}{% set dirForward = true %}{% set dirBackward = true %}", |
|||
" {% endif %}", |
|||
" {% endif %}", |
|||
"", |
|||
" {% if master.flags.hover %}{% set hover = master.dir|default('both') %}{% endif %}", |
|||
" {% if master.flags.selected %}{% set selected = master.dir|default('both') %}{% endif %}", |
|||
"{% endfor %}", |
|||
"", |
|||
"{% set refs = refs|unique|natsort({ insensitive: true }) %}", |
|||
"{% set color = const[aRoute.tags.route].color %}" |
|||
], |
|||
"title": "{% if isStop %}{{ tags.name|default(stopName)|default(id) }}{% endif %}", |
|||
"body": [ |
|||
"<h4>{{ repoTrans('category:pt:routes') }}</h4>", |
|||
"<ul class='overpass-layer-list'>", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.public_transport != 'stop_area' %}", |
|||
" <li data-object=\"{{ master.id }}\">", |
|||
" <span class='markerParent'><div class='marker'>{{ markerCircle({fillColor:const[master.tags.route].color})|raw }}</div><div class='icon'>{{ const[master.tags.route].sign|raw }}</div></span>", |
|||
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}</span>", |
|||
" <span class='description'>{{ tagTrans('route', master.tags.route) }}</span>", |
|||
" </li>", |
|||
" {% endif %}", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"markerSign": " ", |
|||
"markerSymbol": "{% if isStop and stopCount > 0 %}{% if hover or selected %}{{ markerPointer({ })|raw }}{% endif %}{% endif %}", |
|||
"styles": "{% if isStop and stopCount > 0 %}stop{% elseif isWay %}casing,way{% if hover %},hover{% endif %}{% if selected %},selected{% endif %}{% endif %}", |
|||
"style:hover": { |
|||
"pane": "hover", |
|||
"width": "4", |
|||
"color": "black", |
|||
"lineCap": "{% if hover == 'forward' or hover == 'backward' %}butt{% else %}round{% endif %}", |
|||
"dashArray": "{% if hover == 'forward' or hover == 'backward' %}27,8{% endif %}", |
|||
"dashOffset": "{% if hover == 'backward' %}28{% else %}0{% endif %}", |
|||
"noClip": "{% if hover == 'forward' or hover == 'backward' %}true{% else %}false{% endif %}", |
|||
"pattern": "{% if hover == 'forward' or hover == 'backward' %}arrowHead{% endif %}", |
|||
"pattern-offset": "{% if hover == 'backward' %}4{% else %}30.5{% endif %}", |
|||
"pattern-repeat": "35", |
|||
"pattern-polygon": "true", |
|||
"pattern-pixelSize": "9", |
|||
"pattern-angleCorrection": "{% if hover == 'backward' %}180{% else %}0{% endif %}", |
|||
"pattern-path-width": "0", |
|||
"pattern-path-color": "black", |
|||
"pattern-path-fillOpacity": "1" |
|||
}, |
|||
"style:selected": { |
|||
"pane": "selected", |
|||
"width": "4", |
|||
"color": "#3f3f3f", |
|||
"lineCap": "{% if selected == 'forward' or selected == 'backward' %}butt{% else %}round{% endif %}", |
|||
"dashArray": "{% if selected == 'forward' or selected == 'backward' %}27,8{% endif %}", |
|||
"dashOffset": "{% if selected == 'backward' %}28{% else %}0{% endif %}", |
|||
"noClip": "{% if selected == 'forward' or selected == 'backward' %}true{% else %}false{% endif %}", |
|||
"pattern": "{% if selected == 'forward' or selected == 'backward' %}arrowHead{% endif %}", |
|||
"pattern-offset": "{% if selected == 'backward' %}4{% else %}30.5{% endif %}", |
|||
"pattern-repeat": "35", |
|||
"pattern-polygon": "true", |
|||
"pattern-pixelSize": "9", |
|||
"pattern-angleCorrection": "{% if selected == 'backward' %}180{% else %}0{% endif %}", |
|||
"pattern-path-width": "0", |
|||
"pattern-path-color": "#3f3f3f", |
|||
"pattern-path-fillOpacity": "1" |
|||
}, |
|||
"listStopsMarkerSign": null, |
|||
"listStopsMarkerSymbol": "{{ markerCircle({ width: 5, color: color, fillOpacity: '1', radius: 3 })|raw }}", |
|||
"listStopsExclude": "{{ not isStop or stopCount == 0 }}", |
|||
"listStopsTitle": "{% if tags %}{{ tags.name|default(stopName)|default(trans('unknown')) }}{% else %}<li>{{ trans('loading') }}</li>{% endif %}", |
|||
"listStopsDescription": "{{ refs|join(' · ') }}", |
|||
"listRoutesExclude": "true", |
|||
"style:stop": { |
|||
"width": "4", |
|||
"color": "{{ color|default('#ff0000') }}", |
|||
"radius": "3", |
|||
"zIndex": "1" |
|||
}, |
|||
"style:way": { |
|||
"width": "4", |
|||
"color": "{{ color|default('#ff0000') }}", |
|||
"opacity": "1", |
|||
"lineCap": "{% if not dirForward or not dirBackward %}butt{% else %}round{% endif %}", |
|||
"dashArray": "{% if not dirForward or not dirBackward %}27,8{% endif %}", |
|||
"dashOffset": "{% if dirBackward %}28{% else %}0{% endif %}", |
|||
"noClip": "{% if not dirForward or not dirBackward %}true{% else %}false{% endif %}", |
|||
"text": "{{ refs|join(' · ') }} ", |
|||
"textRepeat": "1", |
|||
"textOffset": "12", |
|||
"pattern": "{% if dirForward and dirBackward %}{% else %}arrowHead{% endif %}", |
|||
"pattern-offset": "{% if dirBackward %}4{% else %}30.5{% endif %}", |
|||
"pattern-repeat": "35", |
|||
"pattern-polygon": "true", |
|||
"pattern-pixelSize": "9", |
|||
"pattern-angleCorrection": "{% if dirBackward %}180{% else %}0{% endif %}", |
|||
"pattern-path-width": "0", |
|||
"pattern-path-color": "{{ color|default('#ff0000') }}", |
|||
"pattern-path-fillOpacity": "1", |
|||
"textFontWeight": "bold" |
|||
} |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for value, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({fillColor:data.color})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td>{{ tagTrans('route', value) }}</td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"train": { |
|||
"sign": "<img data-src='maki:rail?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#00007f" |
|||
}, |
|||
"subway": { |
|||
"sign": "<img data-src='maki:rail-metro?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#0000ff" |
|||
}, |
|||
"monorail": { |
|||
"sign": "<span style='color: #ffffff'>M</span>", |
|||
"zoom": 12, |
|||
"color": "#006f8f" |
|||
}, |
|||
"tram": { |
|||
"sign": "<img data-src='maki:rail-light?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#7f007f" |
|||
}, |
|||
"bus": { |
|||
"sign": "<img data-src='maki:bus?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#af0000" |
|||
}, |
|||
"trolleybus": { |
|||
"sign": "<img data-src='maki:bus?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#af3f00" |
|||
}, |
|||
"aerialway": { |
|||
"sign": "<img data-src='maki:aerialway?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#00aaaa" |
|||
}, |
|||
"ferry": { |
|||
"sign": "<img data-src='maki:ferry?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#007fff" |
|||
} |
|||
}, |
|||
"filter": { |
|||
"route": { |
|||
"type": "select", |
|||
"show_default": "true", |
|||
"valueName": "{{ tagTrans('route', value) }}", |
|||
"values": [ |
|||
"aerialway", |
|||
"bus", |
|||
"ferry", |
|||
"subway", |
|||
"train", |
|||
"tram", |
|||
"trolleybus" |
|||
] |
|||
} |
|||
} |
|||
} |
@ -1,80 +0,0 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Routen", |
|||
"en": "Routes", |
|||
"fr": "Lignes" |
|||
}, |
|||
"query": { |
|||
"12": "relation[type=route][route~\"^(subway|monorail|ferry|train)$\"];", |
|||
"14": "relation[type=route][route~\"^(subway|monorail|aerialway|bus|trolleybus|ferry|train|tram)$\"];" |
|||
}, |
|||
"feature": { |
|||
"title": [ |
|||
"{% if tags.ref %}{{ tags.ref }} - {% endif %}", |
|||
"", |
|||
"{{ localizedTag(tags, 'name') |default(localizedTag(tags, 'operator')) | default(localizedTag(tags, 'ref')) | default(trans('unnamed')) }}" |
|||
], |
|||
"description": "{{ tagTrans('route', tags.route) }}", |
|||
"listMarkerSign": "{{ const[tags.route].sign|raw }}", |
|||
"markerSymbol": null, |
|||
"listMarkerSymbol": "{{ markerCircle({fillColor:const[tags.route].color})|raw }}", |
|||
"style": { |
|||
"color": "{{ const[tags.route].color }}" |
|||
} |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for value, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({fillColor:data.color})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td>{{ tagTrans('route', value) }}</td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"train": { |
|||
"sign": "<img src='maki:rail?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#202020" |
|||
}, |
|||
"subway": { |
|||
"sign": "<img src='maki:rail-metro?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#00007f" |
|||
}, |
|||
"monorail": { |
|||
"sign": "<span style='color: #ffffff'>M</span>", |
|||
"zoom": 12, |
|||
"color": "#006f8f" |
|||
}, |
|||
"tram": { |
|||
"sign": "<img src='maki:rail-light?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#7f007f" |
|||
}, |
|||
"bus": { |
|||
"sign": "<img src='maki:bus?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#af0000" |
|||
}, |
|||
"trolleybus": { |
|||
"sign": "<img src='maki:bus?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#af3f00" |
|||
}, |
|||
"aerialway": { |
|||
"sign": "<img src='maki:aerialway?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#00aaaa" |
|||
}, |
|||
"ferry": { |
|||
"sign": "<img src='maki:ferry?fill=#ffffff'>", |
|||
"zoom": 12, |
|||
"color": "#007fff" |
|||
} |
|||
} |
|||
} |
@ -1,47 +0,0 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"ast": "Paraes y estaciones", |
|||
"cs": "Zastávky & Stanice", |
|||
"de": "Haltestellen", |
|||
"el": "Στάσεις & Σταθμοί", |
|||
"en": "Stops & Stations", |
|||
"es": "Paradas y estaciones", |
|||
"fr": "Arrêts/Stops, Stations", |
|||
"hu": "Megállók és állomások", |
|||
"it": "Stazioni e fermate", |
|||
"ja": "停留所と駅", |
|||
"nl": "Haltes en Stations", |
|||
"pl": "Przystanki i Stacje", |
|||
"ru": "Остановки и станции", |
|||
"uk": "Зупинки та станції" |
|||
}, |
|||
"query": { |
|||
"14": [ |
|||
"(", |
|||
"node[railway~\"^(station|halt|tram_stop|platform)$\"];", |
|||
"way[railway~\"^(station|platform)$\"];", |
|||
"node[highway~\"^(bus_stop|platform)$\"];", |
|||
"way[highway~\"^(platform)$\"];", |
|||
"node[public_transport~\"^(stop_position|platform)$\"];", |
|||
"way[public_transport~\"^(platform)$\"];", |
|||
"node[amenity~\"^(ferry_terminal|bus_station)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% if tags.amenity in [ 'ferry_terminal', 'bus_station' ] %}", |
|||
" {% set key = 'amenity' %}", |
|||
" {% set value = tags.amenity %}", |
|||
"{% elseif tags.railway == 'platform' or tags.highway == 'platform' or tags.public_transport == 'platform' %}", |
|||
" {% set key = 'public_transport' %}", |
|||
" {% set value = 'platform' %}", |
|||
"{% else %}", |
|||
" {% set key = 'public_transport' %}", |
|||
" {% set value = 'stop_position' %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": "{{ tagTrans(key, value) }}" |
|||
} |
|||
} |
@ -0,0 +1,166 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Eisenbahn Höchstgeschwindigkeiten", |
|||
"en": "Railway Maxspeed", |
|||
"fr": "Limites de vitesse", |
|||
"hu": "Sebességkorlátozás", |
|||
"pt": "Velocidade máxima", |
|||
"pt-br": "Velocidade máxima" |
|||
}, |
|||
"query": { |
|||
"11": "way[railway=rail][railway!~'^(platform|abandoned|disused|station|proposed|subway_entrance)$'][usage~'^(main|branch)$'];", |
|||
"14": "way[railway][railway!~'^(platform|abandoned|disused|station|proposed|subway_entrance)$'];" |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set maxspeedKmh = null %}", |
|||
"{% set maxspeed = null %}", |
|||
"{% set unit = null %}", |
|||
"", |
|||
"{% if tags.maxspeed is defined %}", |
|||
" {% if tags.maxspeed|matches(\"^[0-9]+$\") %}", |
|||
" {% set maxspeedKmh = tags.maxspeed %}", |
|||
" {% set maxspeed = tags.maxspeed %}", |
|||
" {% set unit = \"km/h\" %}", |
|||
" {% elseif tags.maxspeed|matches( \"(^[0-9]+) mph$\") %}", |
|||
" {% set m = tags.maxspeed|matches(\"(^[0-9]+) mph$\") %}", |
|||
" {% set maxspeedKmh = m[1] * 1.60934 %}", |
|||
" {% set maxspeed = m[1] %}", |
|||
" {% set unit = \"mph\" %}", |
|||
" {% endif %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'maxspeed:forward') is defined %}", |
|||
" {% if attribute(tags, 'maxspeed:forward')|matches(\"^[0-9]+$\") %}", |
|||
" {% set maxspeedFKmh = attribute(tags, 'maxspeed:forward') %}", |
|||
" {% set maxspeedF = attribute(tags, 'maxspeed:forward') %}", |
|||
" {% set unit = \"km/h\" %}", |
|||
" {% elseif attribute(tags, 'maxspeed:forward')|matches(\"^[0-9]+ mph$\") %}", |
|||
" {% set m = attribute(tags, 'maxspeed:forward')|matches(\"(^[0-9]+) mph$\") %}", |
|||
" {% set maxspeedFKmh = m[1] * 1.60934 %}", |
|||
" {% set maxspeedF = m[1] %}", |
|||
" {% set unit = \"mph\" %}", |
|||
" {% endif %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'maxspeed:backward') is defined %}", |
|||
" {% if attribute(tags, 'maxspeed:backward')|matches(\"^[0-9]+$\") %}", |
|||
" {% set maxspeedBKmh = attribute(tags, 'maxspeed:backward') %}", |
|||
" {% set maxspeedB = attribute(tags, 'maxspeed:backward') %}", |
|||
" {% set unit = \"km/h\" %}", |
|||
" {% elseif attribute(tags, 'maxspeed:backward')|matches(\"^[0-9]+ mph$\") %}", |
|||
" {% set m = attribute(tags, 'maxspeed:backward')|matches(\"(^[0-9]+) mph$\") %}", |
|||
" {% set maxspeedBKmh = m[1] * 1.60934 %}", |
|||
" {% set maxspeedB = m[1] %}", |
|||
" {% set unit = \"mph\" %}", |
|||
" {% endif %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if not maxspeedKmh %}", |
|||
"{% set color = \"#404040\" %}", |
|||
"{% else %}", |
|||
"{% set color = colorInterpolate(const.colorMap, (maxspeedKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if maxspeedFKmh %}", |
|||
"{% set colorF = colorInterpolate(const.colorMap, (maxspeedFKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if maxspeedBKmh %}", |
|||
"{% set colorB = colorInterpolate(const.colorMap, (maxspeedBKmh - const.offsetColorSpeed) / const.highestColorSpeed) %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": [ |
|||
"{% if maxspeedF or maxspeedB %}", |
|||
"<span style='color: {{ colorB }}'>{{ maxspeedB|default(trans('unknown')) }}</span> / <span style='color: {{ colorF }}'>{{ maxspeedF|default(trans('unknown')) }}</span> {{ unit }}", |
|||
"{% elseif maxspeed %}", |
|||
"<span style='color: {{ color }}'>{{ maxspeed }} {{ unit }}</span>", |
|||
"{% elseif tags.maxspeed %}", |
|||
"{{ tags.maxspeed }}", |
|||
"{% else %}", |
|||
"{{ trans('unknown') }}", |
|||
"{% endif %}" |
|||
], |
|||
"markerSymbol": null, |
|||
"listMarkerSymbol": "line", |
|||
"styles": "{% if maxspeedB or maxspeedF %}left,right,default{% else %}default{% endif %}", |
|||
"style": { |
|||
"width": "{% if maxspeedB or maxspeedF %}0{% else %}4{% endif %}", |
|||
"color": "{{ color }}", |
|||
"text": [ |
|||
"{% if maxspeedB or maxspeedF %}", |
|||
" {% if maxspeedB %}🡸 {{ maxspeedB }} {% endif %}|{% if maxspeedF %} {{ maxspeedF }} 🡺{% endif %} ", |
|||
"{% else %}", |
|||
" {{ maxspeed }} ", |
|||
"{% endif %}" |
|||
], |
|||
"textRepeat": "1", |
|||
"textOffset": "4", |
|||
"textFontWeight": "bold" |
|||
}, |
|||
"style:left": { |
|||
"width": "2", |
|||
"color": "{{ colorB|default('#404040') }}", |
|||
"offset": "-1" |
|||
}, |
|||
"style:right": { |
|||
"width": "2", |
|||
"color": "{{ colorF|default('#404040') }}", |
|||
"offset": "1" |
|||
} |
|||
}, |
|||
"const": { |
|||
"colorMap": [ |
|||
"#00af00", |
|||
"#ff7f00", |
|||
"#ff0000", |
|||
"#af00af" |
|||
], |
|||
"highestColorSpeed": 300, |
|||
"offsetColorSpeed": 20 |
|||
}, |
|||
"info": [ |
|||
"<div style='display: inline-block'>", |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({}))|raw }}</td>", |
|||
" <td colspan>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"{% for i in range(25, 280, 25) %}", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({ \"maxspeed\": i }))|raw }}</td>", |
|||
" <td>{{ i }}km/h</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({ \"maxspeed\": 300 }))|raw }}</td>", |
|||
" <td>≥300km/h</td>", |
|||
" </tr>", |
|||
"</table>", |
|||
"</div>", |
|||
"", |
|||
"<div style='display: inline-block'>", |
|||
"<table>", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({}))|raw }}</td>", |
|||
" <td colspan>{{ trans('unknown') }}</td>", |
|||
" </tr>", |
|||
"{% for i in range(15, 150, 15) %}", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({ \"maxspeed\": (i * 1.60934)|round }))|raw }}</td>", |
|||
" <td>{{ i }}mph</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({ \"maxspeed\": (175 * 1.60934)|round }))|raw }}</td>", |
|||
" <td>175mph</td>", |
|||
" </tr>", |
|||
" <tr>", |
|||
" <td>{{ markerLine(evaluate({ \"maxspeed\": (200 * 1.60934)|round }))|raw }}</td>", |
|||
" <td>≥200mph</td>", |
|||
" </tr>", |
|||
"</table>", |
|||
"</div>" |
|||
] |
|||
} |
@ -0,0 +1,60 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"en": "Railway Routes", |
|||
"fr": "Lignes ferroviaires", |
|||
"hu": "Vasútvonalak", |
|||
"pt-br": "Rotas ferroviárias" |
|||
}, |
|||
"query": { |
|||
"12": "relation[type=route][route=railway]" |
|||
}, |
|||
"members": true, |
|||
"feature": { |
|||
"pre": "{% set color = '#' ~ tags.operator|default('')|md5|slice(0, 6) %}", |
|||
"listMarkerSymbol": "{{ markerLine({ 'width': 4, 'color': color })|raw }}", |
|||
"description": "{{ tags.operator }}", |
|||
"title": "{% if tags.ref and tags.name %}{{ tags.ref }} - {{ tags.name }}{% elseif tags.ref %}{{ tags.ref }}{% elseif tags.name %}{{ tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}", |
|||
"styles": "", |
|||
"markerSymbol": "" |
|||
}, |
|||
"memberFeature": { |
|||
"pre": [ |
|||
"{% set refs = [] %}", |
|||
"{% set color = '#d41d8c' %}", |
|||
"", |
|||
"{% for master in masters %}", |
|||
" {% if master.tags.operator %}", |
|||
" {% set color = '#' ~ master.tags.operator|md5|slice(0, 6) %}", |
|||
" {% endif %}", |
|||
" {% if master.tags.ref %}", |
|||
" {% set refs = refs|merge([ master.tags.ref ]) %}", |
|||
" {% endif %}", |
|||
"{% endfor %}" |
|||
], |
|||
"title": "", |
|||
"body": [ |
|||
"<h4>Routes</h4>", |
|||
"<ul>", |
|||
"{% for master in masters %}", |
|||
" {% set _color = '#' ~ master.tags.operator|default('')|md5|slice(0, 6) %}", |
|||
" <li data-object=\"{{ master.id }}\" style='list-style: none;'>", |
|||
" <span class='markerParent'><div class='marker'>{{ markerLine({ width: 4, color: _color })|raw }}</div></span>", |
|||
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% else %}{{ trans('unnamed') }}{% endif %}</span>", |
|||
" <span class='description'>{{ master.tags.operator }}</span>", |
|||
" </li>", |
|||
"{% endfor %}", |
|||
"</ul>" |
|||
], |
|||
"listExclude": "1", |
|||
"style": { |
|||
"color": "{{ color }}", |
|||
"width": 4, |
|||
"opacity": 1, |
|||
"text": "{{ refs|join(' · ') }} ", |
|||
"textRepeat": "1", |
|||
"textOffset": "12", |
|||
"textFontWeight": "bold" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,40 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Erneuerbare Energien", |
|||
"en": "Renewables", |
|||
"fr": "Énergies renouvelables", |
|||
"hu": "Megújuló energia", |
|||
"pt-br": "Renováveis" |
|||
}, |
|||
"query": { |
|||
"11": [ |
|||
"(", |
|||
"node[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"way[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"relation[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
")", |
|||
"" |
|||
], |
|||
"15": [ |
|||
"(", |
|||
"node[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"way[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"relation[power~\"^(plant)$\"][\"plant:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"node[power~\"^(generator)$\"][\"generator:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"way[power~\"^(generator)$\"][\"generator:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
"relation[power~\"^(generator)$\"][\"generator:source\"~\"^(wind|solar|biomass|hydro|geothermal|biogas|biofuel)$\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"description": "{{ tagTrans('power', tags.power) }}{% set x='generator:source' %}{% if tags[x] %}, {{ tagTransList('generator:source', tags[x]) }}{% endif %}", |
|||
"popupDescription": "{{ tagTrans('power', tags.power) }}", |
|||
"body": [ |
|||
"{% set x='generator:source' %}{% if tags[x] %}<br/>{{ keyTrans('generator:source') }}: {{ tagTransList('generator:source', tags[x]) }}{% endif %}", |
|||
"{% set x='generator:method' %}{% if tags[x] %}<br/>{{ keyTrans('generator:method') }}: {{ tagTransList('generator:method', tags[x]) }}{% endif %}", |
|||
"{% set x='generator:type' %}{% if tags[x] %}<br/>{{ tagTransList('generator:type') }}: {{ tagTrans('generator:type', tags[x]) }}{% endif %}" |
|||
], |
|||
"priority": "{% if tags.power == 'plant' %}0{% elseif tags.power == 'generator' or tags.power == 'line' %}1{% elseif tags.power == 'substation' %}2{% else %}3{% endif %}" |
|||
} |
|||
} |
@ -0,0 +1,151 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Schwimmen und Baden", |
|||
"en": "Swimming and bathing", |
|||
"fr": "Natation, baignade et bains", |
|||
"hu": "Fürdőzés, úszás", |
|||
"pt-br": "Natação e banho" |
|||
}, |
|||
"query": { |
|||
"13": [ |
|||
"(", |
|||
"nwr[leisure=swimming_area];", |
|||
"nwr[natural~\"^(water)\"][sport~\"^(|.*;)swimming(.*|)$\"];", |
|||
"nwr[natural~\"^(beach)\"];", |
|||
"nwr[leisure~\"^(water_park|beach_resort)$\"];", |
|||
"nwr[leisure=sports_centre][sport~\"^(|.*;)swimming(.*|)$\"];", |
|||
"nwr[amenity=public_bath];", |
|||
"nwr[tourism=spa_resort];", |
|||
")" |
|||
], |
|||
"16": [ |
|||
"(", |
|||
"nwr[leisure=swimming_area];", |
|||
"nwr[natural~\"^(water)\"][sport~\"^(|.*;)swimming(.*|)$\"];", |
|||
"nwr[natural~\"^(beach)\"];", |
|||
"nwr[leisure~\"^(water_park|beach_resort)$\"];", |
|||
"nwr[leisure=sports_centre][sport~\"^(|.*;)swimming(;.*|)$\"];", |
|||
"nwr[amenity~\"^(public_bath|shower)$\"];", |
|||
"nwr[tourism=spa_resort];", |
|||
"", |
|||
"nwr[leisure=swimming_pool][access!=private];", |
|||
"nwr[leisure=sauna];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set k = null %}{% set v = null %}{% set append = null %}", |
|||
"{% if tags.amenity == 'public_bath' %}", |
|||
" {% set k = 'amenity' %}", |
|||
" {% set v = 'public_bath' %}", |
|||
" {% if attribute(tags, 'bath:type') %}{% set append = tagTrans('bath:type', attribute(tags, 'bath:type')) %}{% endif %}", |
|||
"{% elseif tags.amenity == 'shower' %}", |
|||
" {% set k = 'amenity' %}", |
|||
" {% set v = 'shower' %}", |
|||
"{% elseif tags.tourism == 'spa_resort' %}", |
|||
" {% set k = 'tourism' %}", |
|||
" {% set v = tags.tourism %}", |
|||
"{% elseif tags.leisure == 'sauna' %}", |
|||
" {% set k = 'leisure' %}", |
|||
" {% set v = tags.leisure %}", |
|||
" {% if tags.sauna and tags.sauna != 'yes' %}{% set append = tagTransList('sauna', tags.sauna) %}{% endif %}", |
|||
"{% elseif tags.leisure == 'sports_centre' %}", |
|||
" {% set k = 'leisure' %}", |
|||
" {% set v = tags.leisure %}", |
|||
" {% set append = tagTrans('sport', 'swimming') %}", |
|||
"{% elseif tags.leisure %}", |
|||
" {% set k = 'leisure' %}", |
|||
" {% set v = tags.leisure %}", |
|||
"{% elseif tags.natural %}", |
|||
" {% set k = 'natural' %}", |
|||
" {% set v = tags.natural %}", |
|||
" {% if tags.sport %}{% set append = tagTrans('sport', 'swimming') %}{% endif %}", |
|||
"{% endif %}" |
|||
], |
|||
"description": [ |
|||
"{{ tagTrans(k, v) }}", |
|||
"{% if append %}({{ append }}){% endif %}" |
|||
], |
|||
"markerSign": "{{ const[k ~ '=' ~ v].sign|raw }}", |
|||
"priority": "{% if tags.name %}0{% else %}1{% endif %}" |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for value, data in const %}", |
|||
"{% if data.zoom <= map.zoom %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ data.sign|raw }}</div></td>", |
|||
" <td title=\"{% if data.taginfo %}{{ data.taginfo }}{% else %}{{ value }}{% endif %}\">", |
|||
" {{ keyTrans(value) }}", |
|||
" {% if data.append %}({{ trans(data.append) }}){% endif %}", |
|||
" </td>", |
|||
" </tr>", |
|||
"{% endif %}", |
|||
"{% endfor %}", |
|||
"</table>" |
|||
], |
|||
"const": { |
|||
"leisure=swimming_area": { |
|||
"zoom": 13, |
|||
"sign": "<img data-src='maki:swimming?size=11&fill=blue'>" |
|||
}, |
|||
"leisure=water_park": { |
|||
"zoom": 13, |
|||
"sign": "<img data-src='maki:swimming'>" |
|||
}, |
|||
"leisure=beach_resort": { |
|||
"zoom": 13, |
|||
"sign": "<img data-src='temaki:beach'>" |
|||
}, |
|||
"leisure=sports_centre": { |
|||
"zoom": 13, |
|||
"append": "tag:sport=swimming", |
|||
"taginfo": "leisure=swimming_area, sport=swimming", |
|||
"sign": "<img data-src='maki:basketball'>" |
|||
}, |
|||
"natural=water": { |
|||
"zoom": 13, |
|||
"append": "tag:sport=swimming", |
|||
"taginfo": "natural=water, sport=swimming", |
|||
"sign": "<i style='color: blue' class=\"fas fa-water\"></i>" |
|||
}, |
|||
"natural=beach": { |
|||
"zoom": 13, |
|||
"sign": "<img data-src='temaki:beach?fill=green'>" |
|||
}, |
|||
"amenity=public_bath": { |
|||
"zoom": 13, |
|||
"taginfo": "amenity=public_bath, bath:type=*", |
|||
"sign": "<i class=\"fa fa-bath\" style='color: black' aria-hidden=\"true\"></i>" |
|||
}, |
|||
"tourism=spa_resort": { |
|||
"zoom": 13, |
|||
"sign": "<i class=\"fa fa-bath\" style='color: blue' aria-hidden=\"true\"></i>" |
|||
}, |
|||
"leisure=swimming_pool": { |
|||
"zoom": 16, |
|||
"append": "tag:access!=private", |
|||
"taginfo": "leisure=swimming_pool, access!=private", |
|||
"sign": "<i style='font-size: 80%; color: black;' class='fas fa-swimming-pool'></i>" |
|||
}, |
|||
"leisure=sauna": { |
|||
"zoom": 16, |
|||
"taginfo": "leisure=sauna, sauna:type=*", |
|||
"sign": "<i class=\"fa fa-thermometer-full\" aria-hidden=\"true\"></i>" |
|||
}, |
|||
"amenity=shower": { |
|||
"zoom": 16, |
|||
"sign": "🚿 " |
|||
} |
|||
}, |
|||
"filter": { |
|||
"type": { |
|||
"name": "{{ trans('filter:type') }}", |
|||
"type": "select", |
|||
"show_default": "true", |
|||
"values": "{% for k, v in const %}<option value=\"{{ k }}\" query=\"nwr[{{ k }}]\" minzoom=\"{{ v.zoom }}\">{{ tagTrans(k) }}</option>{% endfor %}" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,95 @@ |
|||
{ |
|||
"type": "overpass", |
|||
"name": { |
|||
"de": "Weihnachten", |
|||
"en": "Christmas", |
|||
"fr": "Noël", |
|||
"hu": "Karácsony", |
|||
"pt-br": "Natal" |
|||
}, |
|||
"query": { |
|||
"13": [ |
|||
"(", |
|||
"node[\"xmas:feature\"];", |
|||
"way[\"xmas:feature\"];", |
|||
"relation[\"xmas:feature\"];", |
|||
")" |
|||
] |
|||
}, |
|||
"feature": { |
|||
"pre": [ |
|||
"{% set isCurrent = meta.timestamp >= \"now\"|date_modify('-10 month')|date('Y') %}", |
|||
"{% set bgColor = isCurrent ? '#f2756a' : 'red' %}" |
|||
], |
|||
"title": "{{ attribute(tags, \"xmas:name\")|default(trans(\"unnamed\")) }}", |
|||
"description": "{{ tagTransList(\"xmas:feature\", attribute(tags, \"xmas:feature\")) }}", |
|||
"body": [ |
|||
"{% if not isCurrent %}", |
|||
"<div style='border: 1px solid red; padding: 2px; margin-bottom: 2px;'>{{ repoTrans('xmas:outdated-warning') }}</div>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'xmas:location') %}", |
|||
"<li class='hasSymbol'>", |
|||
" <i class=\"fa fa-globe\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('location') }}:</span>", |
|||
" <span class='value'>", |
|||
" {{ attribute(tags, 'xmas:location') }}", |
|||
" </span>", |
|||
"</li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'xmas:day_date') %}", |
|||
"<li class='hasSymbol'>", |
|||
" <i class=\"fa fa-clock-o\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>Open:</span>", |
|||
" <span class='value'>", |
|||
" {{ attribute(tags, 'xmas:day_date') }}", |
|||
" </span>", |
|||
"</li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'xmas:opening_hours') %}", |
|||
"<li class='hasSymbol'>", |
|||
" <i class=\"fa fa-clock-o\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('opening_hours') }}:</span>", |
|||
" <span class='value'>", |
|||
" {{ attribute(tags, 'xmas:opening_hours') }}", |
|||
" </span>", |
|||
"</li>", |
|||
"{% endif %}", |
|||
"", |
|||
"{% if attribute(tags, 'xmas:url') %}", |
|||
"<li class='hasSymbol'>", |
|||
" <i class=\"fa fa-globe\" aria-hidden=\"true\"></i>", |
|||
" <span class='key'>{{ keyTrans('website') }}:</span>", |
|||
" <span class='value'>", |
|||
" <a target='_blank' href='{{ attribute(tags, 'xmas:url')|websiteUrl }}'>{{ attribute(tags, 'xmas:url') }}</a>", |
|||
" </span>", |
|||
"</li>", |
|||
"{% endif %}" |
|||
], |
|||
"markerSign": "{{ attribute(const, attribute(tags, 'xmas:feature'))|raw }}", |
|||
"markerSymbol": "{{ markerPointer({\"fillColor\":bgColor})|raw }}", |
|||
"listMarkerSymbol": "{{ markerCircle({\"fillColor\":bgColor})|raw }}" |
|||
}, |
|||
"const": { |
|||
"market": "<img data-src='maki:commercial'>", |
|||
"tree": "<i class=\"fa fa-tree\" aria-hidden=\"true\"></i>", |
|||
"shop": "<i class=\"fa fa-shopping-basket\" aria-hidden=\"true\"></i>", |
|||
"event": "<img data-src='maki:amusement-park'>" |
|||
}, |
|||
"info": [ |
|||
"<table>", |
|||
"{% for value, icon in const %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({})|raw }}<div class='sign'>{{ icon|raw }}</div></td>", |
|||
" <td>{{ tagTrans('xmas:feature', value) }}</td>", |
|||
" </tr>", |
|||
"{% endfor %}", |
|||
" <tr>", |
|||
" <td>{{ markerCircle({\"fillColor\":\"red\"})|raw }}</td>", |
|||
" <td>{{ repoTrans('outdated feature') }}</td>", |
|||
" </tr>", |
|||
"</table>" |
|||
] |
|||
} |
Reference in new issue
xxxxxxxxxx