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
garudakarura:aboriginal_lands
garudakarura:buildings
garudakarura:climbing
garudakarura:filter
garudakarura:fitness_trail
garudakarura:fossil
garudakarura:heritage
garudakarura:leisure-restruct
garudakarura:master
garudakarura:maxspeed
garudakarura:office
garudakarura:pattern
garudakarura:places
garudakarura:pt
garudakarura:railway-electrification
garudakarura:shop-bulk_purchase
pull from: garudakarura:pattern
garudakarura:aboriginal_lands
garudakarura:buildings
garudakarura:climbing
garudakarura:filter
garudakarura:fitness_trail
garudakarura:fossil
garudakarura:heritage
garudakarura:leisure-restruct
garudakarura:master
garudakarura:maxspeed
garudakarura:office
garudakarura:pattern
garudakarura:places
garudakarura:pt
garudakarura:railway-electrification
garudakarura: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
153 Commits
88 changed files with 2661 additions and 803 deletions
-
4administrative.json
-
13agriculture.json
-
2alternative_amenities.json
-
3alternative_routes.json
-
5buildings.json
-
8car_amenities.json
-
5car_furniture.json
-
10car_maxspeed.json
-
65car_routes.json
-
4children.json
-
41coal.json
-
2communication.json
-
5construction.json
-
77craft.json
-
2culture.json
-
11culture_religion.json
-
18cycle_amenities.json
-
144cycle_routes.json
-
5detailsBody.html
-
5education.json
-
6electric_power.json
-
34emergency.json
-
7financial.json
-
70gastro-smoking.json
-
18gastro.json
-
34health.json
-
95hiking_routes.json
-
26historic.json
-
102index.json
-
5internet.json
-
63lang/ast.json
-
121lang/ca.json
-
63lang/cs.json
-
47lang/de.json
-
87lang/el.json
-
49lang/en.json
-
123lang/es.json
-
96lang/et.json
-
65lang/fr.json
-
108lang/hu.json
-
71lang/it.json
-
69lang/ja.json
-
65lang/nl.json
-
106lang/pl.json
-
79lang/pt-br.json
-
79lang/pt.json
-
82lang/ro.json
-
71lang/ru.json
-
79lang/template.json
-
78lang/uk.json
-
3leisure.json
-
67memorial.json
-
4military.json
-
53mtb-routes.json
-
4natural.json
-
64oil_gas.json
-
4other.json
-
15outdoor.json
-
3phone.json
-
2places.json
-
2places_geo.json
-
3playgrounds.json
-
26popupBody.html
-
4post.json
-
63power_routes.json
-
235pt.json
-
2pt_amenities.json
-
80pt_routes.json
-
47pt_stops.json
-
3public.json
-
11railway-electrification.json
-
22railway-infrastructure.json
-
117railway-maxspeed.json
-
60railway-routes.json
-
39religion.json
-
37renewables.json
-
2residential.json
-
3resources.json
-
4shop.json
-
6sport.json
-
8tourism_attractions.json
-
8tourism_services.json
-
3transport_alternative.json
-
4walk_amenities.json
-
5waste.json
-
13water.json
-
6wikipedia.json
-
5works.json
@ -0,0 +1,65 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"en": "Car routes", |
||||
|
"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,41 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"de": "Kohle", |
||||
|
"en": "Coal" |
||||
|
}, |
||||
|
"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,77 @@ |
|||||
|
{ |
||||
|
"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": "🍷" |
||||
|
} |
||||
|
} |
||||
|
} |
@ -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,79 @@ |
|||||
{ |
{ |
||||
"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:car_amenities": "", |
||||
|
"category:car_furniture": "", |
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
"category:communication": "Comunicacions", |
"category:communication": "Comunicacions", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Cultura", |
"category:culture": "Cultura", |
||||
"category:culture_religion": "Cultura i religió", |
"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: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: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:leisure": "", |
||||
"category:leisure_sport_shopping": "Oci, esport i compres", |
"category:leisure_sport_shopping": "Oci, esport i compres", |
||||
"category:services": "Serveis" |
|
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
|
"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: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": "" |
||||
} |
} |
@ -1,60 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": "Διοικητικά Όρια", |
"category:administrative": "Διοικητικά Όρια", |
||||
"category:agriculture": "Γεωργία", |
"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:car_amenities": "", |
||||
|
"category:car_furniture": "", |
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
"category:communication": "Επικοινωνίες", |
"category:communication": "Επικοινωνίες", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Πολιτισμός", |
"category:culture": "Πολιτισμός", |
||||
"category:culture_religion": "Πολιτισμός", |
"category:culture_religion": "Πολιτισμός", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "Υπηρεσίες Εκπαίδευσης", |
"category:education": "Υπηρεσίες Εκπαίδευσης", |
||||
|
"category:electric_power": "", |
||||
"category:emergency": "Υπηρεσίες Έκτακτης Ανάγκης", |
"category:emergency": "Υπηρεσίες Έκτακτης Ανάγκης", |
||||
|
"category:energy": "", |
||||
"category:financial": "Χρήμα", |
"category:financial": "Χρήμα", |
||||
"category:gastro": "Γαστρονομία", |
"category:gastro": "Γαστρονομία", |
||||
|
"category:gastro-smoking": "", |
||||
"category:health": "Υγεία", |
"category:health": "Υγεία", |
||||
"category:hiking_routes": null, |
|
||||
|
"category:hiking_routes": "", |
||||
"category:historic": "Ιστορικά", |
"category:historic": "Ιστορικά", |
||||
"category:index": null, |
|
||||
"category:internet": null, |
|
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
|
"category:internet": "", |
||||
"category:leisure": "Αναψυχή", |
"category:leisure": "Αναψυχή", |
||||
|
"category:leisure_sport_shopping": "Αναψυχή, Αθλητισμός και Αγορές", |
||||
|
"category:memorial": "", |
||||
"category:military": "Στρατιωτικό", |
"category:military": "Στρατιωτικό", |
||||
|
"category:mtb-routes": "", |
||||
"category:natural": "Φυσικοί Σχηματισμοί", |
"category:natural": "Φυσικοί Σχηματισμοί", |
||||
"category:other": null, |
|
||||
"category:phone": null, |
|
||||
|
"category:oil_gas": "", |
||||
|
"category:other": "", |
||||
|
"category:outdoor": "", |
||||
|
"category:phone": "", |
||||
"category:places": "Μέρη", |
"category:places": "Μέρη", |
||||
"category:places_geo": "Μέρη", |
"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: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:religion": "Θρησκεία", |
||||
|
"category:renewables": "", |
||||
"category:residential": "Περιοχές Κατοικίας", |
"category:residential": "Περιοχές Κατοικίας", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "", |
||||
|
"category:services": "Υπηρεσίες", |
||||
"category:shop": "Αγορές", |
"category:shop": "Αγορές", |
||||
|
"category:special": "", |
||||
"category:sport": "Άθληση", |
"category:sport": "Άθληση", |
||||
"category:tourism_attractions": "Τουρισμός", |
"category:tourism_attractions": "Τουρισμός", |
||||
"category:tourism_services": "Τουρισμός", |
"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": "Μεταφορές", |
||||
"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": "" |
||||
} |
} |
@ -1,58 +1,79 @@ |
|||||
{ |
{ |
||||
"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": "", |
||||
|
"category:agriculture": "", |
||||
|
"category:alternative_amenities": "", |
||||
|
"category:alternative_routes": "", |
||||
|
"category:buildings": "", |
||||
|
"category:car_amenities": "", |
||||
|
"category:car_furniture": "", |
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
|
"category:communication": "", |
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Cultura", |
"category:culture": "Cultura", |
||||
"category:culture_religion": "Cultura y religión", |
"category:culture_religion": "Cultura y religión", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
"category:education": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
|
"category:education": "", |
||||
|
"category:electric_power": "", |
||||
"category:emergency": "Servicios de emergencia", |
"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": "", |
||||
|
"category:financial": "", |
||||
|
"category:gastro": "", |
||||
|
"category:gastro-smoking": "", |
||||
|
"category:health": "", |
||||
|
"category:hiking_routes": "", |
||||
|
"category:historic": "", |
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
"category:internet": "Acceso a Internet", |
"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:leisure": "", |
||||
"category:leisure_sport_shopping": "Ocio, deporte y compras", |
"category:leisure_sport_shopping": "Ocio, deporte y compras", |
||||
"category:services": "Servicios" |
|
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
|
"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": "Paradas y estaciones", |
||||
|
"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": "Servicios", |
||||
|
"category:shop": "", |
||||
|
"category:special": "", |
||||
|
"category:sport": "", |
||||
|
"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": "" |
||||
} |
} |
@ -1,61 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": "Administratiivalad", |
"category:administrative": "Administratiivalad", |
||||
"category:agriculture": "Põllumajandus", |
"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:car_amenities": "", |
||||
|
"category:car_furniture": "", |
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
"category:communication": "Kommunikatsioon", |
"category:communication": "Kommunikatsioon", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Kultuur", |
"category:culture": "Kultuur", |
||||
"category:culture_religion": "Kultuur ja religioon", |
"category:culture_religion": "Kultuur ja religioon", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "Haridusteenused", |
"category:education": "Haridusteenused", |
||||
|
"category:electric_power": "Elekter", |
||||
"category:emergency": "Hädaabi teenused", |
"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:historic": "Ajalooline", |
||||
"category:index": null, |
|
||||
"category:internet": null, |
|
||||
"category:leisure": null, |
|
||||
"category:military": null, |
|
||||
"category:natural": null, |
|
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
|
"category:internet": "", |
||||
|
"category:leisure": "", |
||||
|
"category:leisure_sport_shopping": "Vaba aeg, sport ja ostmine", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
"category:other": "Ülejäänud", |
"category:other": "Ülejäänud", |
||||
|
"category:outdoor": "", |
||||
"category:phone": "Telefon", |
"category:phone": "Telefon", |
||||
"category:places": "Kohad", |
"category:places": "Kohad", |
||||
"category:places_geo": "Kohad", |
"category:places_geo": "Kohad", |
||||
"category:playgrounds": "Mänguväljak", |
"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: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:religion": "Religioon", |
||||
|
"category:renewables": "", |
||||
"category:residential": "Elamupiirkonnad", |
"category:residential": "Elamupiirkonnad", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "", |
||||
|
"category:services": "Teenused", |
||||
"category:shop": "Ostmine", |
"category:shop": "Ostmine", |
||||
"category:sport": null, |
|
||||
|
"category:special": "", |
||||
|
"category:sport": "", |
||||
"category:tourism_attractions": "Turism", |
"category:tourism_attractions": "Turism", |
||||
"category:tourism_services": "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": "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": "" |
||||
} |
} |
@ -1,61 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": "Adminisztratív határok", |
|
||||
|
"category:administrative": "Közigazgatási határok", |
||||
"category:agriculture": "Mezőgazdaság", |
"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: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": "", |
||||
"category:communication": "Kommunikácó", |
"category:communication": "Kommunikácó", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "Építési terület", |
||||
|
"category:craft": "Műhelyek", |
||||
"category:culture": "Kultúra", |
"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": "", |
||||
|
"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:leisure": "Szabadidő", |
||||
|
"category:leisure_sport_shopping": "Szabadidő, sport és vásárlás", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "Katonai objektumok", |
||||
|
"category:mtb-routes": "Hegyikerékpáros útvonalak", |
||||
"category:natural": "Természeti képződmények", |
"category:natural": "Természeti képződmények", |
||||
|
"category:oil_gas": "", |
||||
"category:other": "Egyéb", |
"category:other": "Egyéb", |
||||
|
"category:outdoor": "Szabadtéri tevékenységek", |
||||
"category:phone": "Telefon", |
"category:phone": "Telefon", |
||||
"category:places": "Helyek", |
"category:places": "Helyek", |
||||
"category:places_geo": "Helyek", |
"category:places_geo": "Helyek", |
||||
"category:playgrounds": null, |
|
||||
|
"category:playgrounds": "Játszóterek", |
||||
"category:post": "Posta", |
"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": "", |
||||
|
"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:religion": "Vallás", |
||||
|
"category:renewables": "", |
||||
"category:residential": "Lakóövezetek", |
"category:residential": "Lakóövezetek", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "Bányászat", |
||||
|
"category:services": "Szolgáltatások", |
||||
"category:shop": "Vásárlás", |
"category:shop": "Vásárlás", |
||||
|
"category:special": "Speciális", |
||||
"category:sport": "Sport", |
"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:tourism_attractions": "Látnivalók", |
||||
|
"category:tourism_services": "Turisztikai szolgáltatások", |
||||
"category:transport": "Közlekedés", |
"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" |
||||
} |
} |
@ -1,62 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": null, |
|
||||
|
"category:administrative": "", |
||||
"category:agriculture": "農業", |
"category:agriculture": "農業", |
||||
"category:alternative_amenities": "生活環境", |
"category:alternative_amenities": "生活環境", |
||||
"category:alternative_routes": "ルート", |
"category:alternative_routes": "ルート", |
||||
"category:buildings": null, |
|
||||
|
"category:buildings": "", |
||||
"category:car_amenities": "生活環境", |
"category:car_amenities": "生活環境", |
||||
"category:car_furniture": "街路設置公共物", |
"category:car_furniture": "街路設置公共物", |
||||
"category:car_maxspeed": null, |
|
||||
"category:children": null, |
|
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
"category:communication": "交流", |
"category:communication": "交流", |
||||
"category:construction": "工事中", |
"category:construction": "工事中", |
||||
|
"category:craft": "", |
||||
"category:culture": "文化", |
"category:culture": "文化", |
||||
"category:culture_religion": "文化", |
"category:culture_religion": "文化", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "教育サービス", |
"category:education": "教育サービス", |
||||
|
"category:electric_power": "電力", |
||||
"category:emergency": "緊急サービス", |
"category:emergency": "緊急サービス", |
||||
|
"category:energy": "", |
||||
"category:financial": "金融", |
"category:financial": "金融", |
||||
"category:gastro": "食べ物", |
"category:gastro": "食べ物", |
||||
|
"category:gastro-smoking": "", |
||||
"category:health": "健康", |
"category:health": "健康", |
||||
"category:hiking_routes": null, |
|
||||
|
"category:hiking_routes": "", |
||||
"category:historic": "記念", |
"category:historic": "記念", |
||||
"category:index": null, |
|
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
"category:internet": "インターネット接続", |
"category:internet": "インターネット接続", |
||||
"category:leisure": "レジャー", |
"category:leisure": "レジャー", |
||||
|
"category:leisure_sport_shopping": "レジャー", |
||||
|
"category:memorial": "", |
||||
"category:military": "軍事", |
"category:military": "軍事", |
||||
|
"category:mtb-routes": "", |
||||
"category:natural": "自然地層", |
"category:natural": "自然地層", |
||||
|
"category:oil_gas": "", |
||||
"category:other": "その他", |
"category:other": "その他", |
||||
|
"category:outdoor": "", |
||||
"category:phone": "電話", |
"category:phone": "電話", |
||||
"category:places": "場所", |
"category:places": "場所", |
||||
"category:places_geo": "場所", |
"category:places_geo": "場所", |
||||
"category:playgrounds": null, |
|
||||
|
"category:playgrounds": "", |
||||
"category:post": "郵便", |
"category:post": "郵便", |
||||
"category:power": "電力", |
|
||||
|
"category:power_routes": "", |
||||
|
"category:pt": "", |
||||
|
"category:pt:routes": "", |
||||
|
"category:pt:stops": "停留所と駅", |
||||
"category:pt_amenities": "生活環境", |
"category:pt_amenities": "生活環境", |
||||
"category:pt_routes": null, |
|
||||
"category:pt_stops": "停留所と駅", |
|
||||
"category:public": "公共サービス", |
"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:religion": "宗教", |
||||
|
"category:renewables": "", |
||||
"category:residential": "住居エリア", |
"category:residential": "住居エリア", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "", |
||||
|
"category:services": "サービス", |
||||
"category:shop": "ショッピング", |
"category:shop": "ショッピング", |
||||
|
"category:special": "", |
||||
"category:sport": "スポーツ", |
"category:sport": "スポーツ", |
||||
"category:tourism_attractions": "観光", |
"category:tourism_attractions": "観光", |
||||
"category:tourism_services": "観光", |
"category:tourism_services": "観光", |
||||
"category:transport_alternative": "その他交通 (サイクリング、ハイキング、...)", |
|
||||
"category:walk_amenities": null, |
|
||||
"category:waste": "処理場", |
|
||||
"category:water": null, |
|
||||
"category:wikipedia": null, |
|
||||
"category:works": "工場", |
|
||||
"category:cycle_infrastructure": null, |
|
||||
"category:leisure_sport_shopping": "レジャー", |
|
||||
"category:railway": "鉄道", |
|
||||
"category:services": "サービス", |
|
||||
"category:transport": "輸送", |
"category:transport": "輸送", |
||||
|
"category:transport_alternative": "その他交通 (サイクリング、ハイキング、...)", |
||||
"category:transport_car": "個人輸送機関", |
"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": "工場" |
||||
} |
} |
@ -1,61 +1,79 @@ |
|||||
{ |
{ |
||||
"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:car_amenities": "", |
||||
"category:car_furniture": "Elementy drogowe", |
"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": "Kultura", |
||||
"category:culture_religion": "Kultura", |
"category:culture_religion": "Kultura", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "Edukacyjne", |
"category:education": "Edukacyjne", |
||||
"category:emergency": null, |
|
||||
|
"category:electric_power": "", |
||||
|
"category:emergency": "", |
||||
|
"category:energy": "", |
||||
"category:financial": "Finasowe", |
"category:financial": "Finasowe", |
||||
"category:gastro": "Gastronomia", |
"category:gastro": "Gastronomia", |
||||
|
"category:gastro-smoking": "", |
||||
"category:health": "Zdrowie", |
"category:health": "Zdrowie", |
||||
"category:hiking_routes": null, |
|
||||
|
"category:hiking_routes": "", |
||||
"category:historic": "Miejsca Historyczne", |
"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:leisure": "", |
||||
|
"category:leisure_sport_shopping": "Wypoczynek, Sport i Zakupy", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
|
"category:other": "", |
||||
|
"category:outdoor": "", |
||||
|
"category:phone": "", |
||||
"category:places": "Miejsca", |
"category:places": "Miejsca", |
||||
"category:places_geo": "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:shop": "Zakupy", |
||||
"category:sport": null, |
|
||||
|
"category:special": "", |
||||
|
"category:sport": "", |
||||
"category:tourism_attractions": "Turystyka", |
"category:tourism_attractions": "Turystyka", |
||||
"category:tourism_services": "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": "Transport", |
||||
|
"category:transport_alternative": "", |
||||
"category:transport_car": "Transport Indywidualny", |
"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": "" |
||||
} |
} |
@ -0,0 +1,79 @@ |
|||||
|
{ |
||||
|
"category:administrative": "Divisão político-administrativa", |
||||
|
"category:agriculture": "Agricultura", |
||||
|
"category:alternative_amenities": "Equipamentos", |
||||
|
"category:alternative_routes": "Rotas", |
||||
|
"category:buildings": "Edificações", |
||||
|
"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": "", |
||||
|
"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", |
||||
|
"category:emergency": "Emergência", |
||||
|
"category:energy": "", |
||||
|
"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:leisure": "Lazer", |
||||
|
"category:leisure_sport_shopping": "Lazer, esportes e compras", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "Militar", |
||||
|
"category:mtb-routes": "Rotas mountain bike", |
||||
|
"category:natural": "Formações naturais", |
||||
|
"category:oil_gas": "", |
||||
|
"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": "", |
||||
|
"category:pt": "Mapa de transporte público", |
||||
|
"category:pt:routes": "Rotas", |
||||
|
"category:pt:stops": "Paradas e estações", |
||||
|
"category:pt_amenities": "Equipamentos", |
||||
|
"category:public": "Serviços públicos", |
||||
|
"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": "", |
||||
|
"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:tourism_attractions": "Turismo", |
||||
|
"category:tourism_services": "Serviços de turismo", |
||||
|
"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": "Fábricas" |
||||
|
} |
@ -0,0 +1,79 @@ |
|||||
|
{ |
||||
|
"category:administrative": "Regiões administrativas", |
||||
|
"category:agriculture": "Agricultura", |
||||
|
"category:alternative_amenities": "", |
||||
|
"category:alternative_routes": "Rotas", |
||||
|
"category:buildings": "Edifícios", |
||||
|
"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:leisure": "Lazer", |
||||
|
"category:leisure_sport_shopping": "Lazer, desporto e compras", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "Militar", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "Formações naturais", |
||||
|
"category:oil_gas": "", |
||||
|
"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: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" |
||||
|
} |
@ -1,61 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": "Zona administrativa", |
"category:administrative": "Zona administrativa", |
||||
"category:agriculture": "Agricultura", |
"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:car_amenities": "", |
||||
|
"category:car_furniture": "", |
||||
|
"category:car_maxspeed": "", |
||||
|
"category:car_routes": "", |
||||
|
"category:children": "", |
||||
|
"category:coal": "", |
||||
"category:communication": "Comunicatii", |
"category:communication": "Comunicatii", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Cultura", |
"category:culture": "Cultura", |
||||
"category:culture_religion": "Cultura", |
"category:culture_religion": "Cultura", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "Servicii educatie", |
"category:education": "Servicii educatie", |
||||
|
"category:electric_power": "Energie", |
||||
"category:emergency": "Servicii urgenta", |
"category:emergency": "Servicii urgenta", |
||||
|
"category:energy": "", |
||||
"category:financial": "Financiar", |
"category:financial": "Financiar", |
||||
"category:gastro": "Gastronomie", |
"category:gastro": "Gastronomie", |
||||
|
"category:gastro-smoking": "", |
||||
"category:health": "Sanatate", |
"category:health": "Sanatate", |
||||
"category:hiking_routes": null, |
|
||||
|
"category:hiking_routes": "", |
||||
"category:historic": "Istoric", |
"category:historic": "Istoric", |
||||
"category:index": null, |
|
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
"category:internet": "Acces internet", |
"category:internet": "Acces internet", |
||||
"category:leisure": "Timp liber", |
"category:leisure": "Timp liber", |
||||
|
"category:leisure_sport_shopping": "Timp liber, Sport si Cumparaturi", |
||||
|
"category:memorial": "", |
||||
"category:military": "Militar", |
"category:military": "Militar", |
||||
"category:natural": null, |
|
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
"category:other": "Altele", |
"category:other": "Altele", |
||||
|
"category:outdoor": "", |
||||
"category:phone": "Telefon", |
"category:phone": "Telefon", |
||||
"category:places": "Locuri", |
"category:places": "Locuri", |
||||
"category:places_geo": "Locuri", |
"category:places_geo": "Locuri", |
||||
"category:playgrounds": "Loc de joaca", |
"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: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:religion": "Religie", |
||||
|
"category:renewables": "", |
||||
"category:residential": "Zona rezidentiala", |
"category:residential": "Zona rezidentiala", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "", |
||||
|
"category:services": "Servicii", |
||||
"category:shop": "Cumpărături", |
"category:shop": "Cumpărături", |
||||
"category:sport": null, |
|
||||
|
"category:special": "", |
||||
|
"category:sport": "", |
||||
"category:tourism_attractions": "Turism", |
"category:tourism_attractions": "Turism", |
||||
"category:tourism_services": "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": "Transport", |
||||
|
"category:transport_alternative": "Alternativ(Bicicleta,Drumetii)", |
||||
"category:transport_car": "Trafic individual", |
"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": "" |
||||
} |
} |
@ -0,0 +1,79 @@ |
|||||
|
{ |
||||
|
"category:administrative": "", |
||||
|
"category:agriculture": "", |
||||
|
"category:alternative_amenities": "", |
||||
|
"category:alternative_routes": "", |
||||
|
"category:buildings": "", |
||||
|
"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:leisure": "", |
||||
|
"category:leisure_sport_shopping": "", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
|
"category:natural": "", |
||||
|
"category:oil_gas": "", |
||||
|
"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: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": "" |
||||
|
} |
@ -1,61 +1,79 @@ |
|||||
{ |
{ |
||||
"category:administrative": null, |
|
||||
"category:agriculture": null, |
|
||||
|
"category:administrative": "", |
||||
|
"category:agriculture": "", |
||||
"category:alternative_amenities": "Amenities", |
"category:alternative_amenities": "Amenities", |
||||
"category:alternative_routes": "Маршрути", |
"category:alternative_routes": "Маршрути", |
||||
"category:buildings": null, |
|
||||
|
"category:buildings": "", |
||||
"category:car_amenities": "Amenities", |
"category:car_amenities": "Amenities", |
||||
"category:car_furniture": "Street Furniture", |
"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:communication": "Телекомунікації", |
||||
"category:construction": null, |
|
||||
|
"category:construction": "", |
||||
|
"category:craft": "", |
||||
"category:culture": "Культура ", |
"category:culture": "Культура ", |
||||
"category:culture_religion": "Культура ", |
"category:culture_religion": "Культура ", |
||||
"category:cycle_amenities": null, |
|
||||
"category:cycle_routes": null, |
|
||||
|
"category:cycle_amenities": "", |
||||
|
"category:cycle_routes": "", |
||||
"category:education": "Освіта", |
"category:education": "Освіта", |
||||
|
"category:electric_power": "", |
||||
"category:emergency": "Швидка допомога", |
"category:emergency": "Швидка допомога", |
||||
|
"category:energy": "", |
||||
"category:financial": "Фінанси", |
"category:financial": "Фінанси", |
||||
"category:gastro": "Гастрономія", |
"category:gastro": "Гастрономія", |
||||
|
"category:gastro-smoking": "", |
||||
"category:health": "Здоров'я", |
"category:health": "Здоров'я", |
||||
"category:hiking_routes": null, |
|
||||
|
"category:hiking_routes": "", |
||||
"category:historic": "Історія", |
"category:historic": "Історія", |
||||
"category:index": null, |
|
||||
"category:internet": null, |
|
||||
|
"category:index": "", |
||||
|
"category:infrastructure": "", |
||||
|
"category:internet": "", |
||||
"category:leisure": "Дозвілля", |
"category:leisure": "Дозвілля", |
||||
"category:military": null, |
|
||||
|
"category:leisure_sport_shopping": "Дозвілля", |
||||
|
"category:memorial": "", |
||||
|
"category:military": "", |
||||
|
"category:mtb-routes": "", |
||||
"category:natural": "Природне середовище", |
"category:natural": "Природне середовище", |
||||
|
"category:oil_gas": "", |
||||
"category:other": "Інше", |
"category:other": "Інше", |
||||
"category:phone": null, |
|
||||
|
"category:outdoor": "", |
||||
|
"category:phone": "", |
||||
"category:places": "Місцевість", |
"category:places": "Місцевість", |
||||
"category:places_geo": "Місцевість", |
"category:places_geo": "Місцевість", |
||||
"category:playgrounds": "Дитячий майданчик", |
"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_amenities": "Amenities", |
||||
"category:pt_routes": null, |
|
||||
"category:pt_stops": "Зупинки та станції", |
|
||||
"category:public": "Громадські місця", |
"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:religion": "Релігія", |
||||
|
"category:renewables": "", |
||||
"category:residential": "Житлова зона", |
"category:residential": "Житлова зона", |
||||
"category:resources": null, |
|
||||
|
"category:resources": "", |
||||
|
"category:services": "Послуги", |
||||
"category:shop": "Торгівля", |
"category:shop": "Торгівля", |
||||
|
"category:special": "", |
||||
"category:sport": "Спорт. Інше.", |
"category:sport": "Спорт. Інше.", |
||||
"category:tourism_attractions": "Туризм", |
"category:tourism_attractions": "Туризм", |
||||
"category:tourism_services": "Туризм", |
"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": "Транспорт", |
||||
|
"category:transport_alternative": "Інші (Велосипедні, піші, ...)", |
||||
"category:transport_car": "Приватний транспорт", |
"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": "" |
||||
} |
} |
@ -0,0 +1,67 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"de": "Denkmäler", |
||||
|
"en": "Memorials" |
||||
|
}, |
||||
|
"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) }}", |
||||
|
"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 src='maki:monument?size=15'>", |
||||
|
"zoom": 11 |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"en": "Mountain bike routes", |
||||
|
"fr": "Itinéraires de VTT", |
||||
|
"hu": "Hegyikerékpáros útvonalak", |
||||
|
"pt-br": "Rotas 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,64 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"de": "Erdöl und Erdgas", |
||||
|
"en": "Petroleum and natural gas" |
||||
|
}, |
||||
|
"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,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,63 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"en": "Power routes" |
||||
|
}, |
||||
|
"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,235 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"de": "ÖV Karte", |
||||
|
"en": "Public transport map", |
||||
|
"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>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": "", |
||||
|
"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>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) }}{{ master.dir }}</span>", |
||||
|
" </li>", |
||||
|
" {% endif %}", |
||||
|
"{% endfor %}", |
||||
|
"</ul>" |
||||
|
], |
||||
|
"styles": "{% if isStop and stopCount > 0 %}{% elseif isWay %}way{% if hover %},hover{% endif %}{% if selected %},selected{% endif %}{% endif %}", |
||||
|
"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", |
||||
|
"markerSymbol": "{% if isStop and stopCount > 0 %}{% if hover or selected %}{{ markerCircle({ width: 0, fill: true, fillColor: hover ? '#000000' : '#3f3f3f', fillOpacity: '1', radius: 7 })|raw }}{% else %}{{ markerCircle({ width: 0, fill: true, fillColor: color, fillOpacity: '1', radius: 5 })|raw }}{% endif %}{% endif %}", |
||||
|
"style:way": { |
||||
|
"width": "3", |
||||
|
"opacity": "{% if (dirForward and dirBackward) or (not dirForward and not dirBackward) %}1{% else %}0{% endif %}", |
||||
|
"color": "{{ color|default('#ff0000') }}", |
||||
|
"text": "{{ refs|join(' · ') }} ", |
||||
|
"textRepeat": "1", |
||||
|
"textOffset": "12", |
||||
|
"textFontWeight": "bold", |
||||
|
"pattern": "{% if dirForward and dirBackward %}{% else %}arrowHead{% endif %}", |
||||
|
"pattern-pixelSize": "4", |
||||
|
"pattern-repeat": "7", |
||||
|
"pattern-polygon": "", |
||||
|
"pattern-angleCorrection": "{% if dirBackward %}180{% else %}0{% endif %}", |
||||
|
"pattern-path-weight": "2", |
||||
|
"pattern-path-color": "{{ color|default('#ff0000') }}" |
||||
|
}, |
||||
|
"style:hover": { |
||||
|
"pane": "hover", |
||||
|
"width": "{% if hover == 'forward' or hover == 'backward' %}0{% else %}4{% endif %}", |
||||
|
"color": "black", |
||||
|
"pattern": "{% if hover == 'forward' or hover == 'backward' %}arrowHead{% endif %}", |
||||
|
"pattern-pixelSize": "4", |
||||
|
"pattern-repeat": "7", |
||||
|
"pattern-polygon": "", |
||||
|
"pattern-path-weight": "2", |
||||
|
"pattern-path-color": "black", |
||||
|
"pattern-path-angleCorrection": "{% if hover == 'backward' %}180{% else %}0{% endif %}" |
||||
|
}, |
||||
|
"style:selected": { |
||||
|
"pane": "selected", |
||||
|
"width": "{% if selected == 'forward' or selected == 'backward' %}0{% else %}3{% endif %}", |
||||
|
"color": "#3f3f3f", |
||||
|
"pattern": "{% if selected == 'forward' or selected == 'backward' %}arrowHead{% endif %}", |
||||
|
"pattern-pixelSize": "4", |
||||
|
"pattern-repeat": "7", |
||||
|
"pattern-polygon": "", |
||||
|
"pattern-path-weight": "2", |
||||
|
"pattern-path-color": "#3f3f3f", |
||||
|
"pattern-path-angleCorrection": "{% if selected == 'backward' %}180{% else %}0{% endif %}" |
||||
|
} |
||||
|
}, |
||||
|
"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": "#00007f" |
||||
|
}, |
||||
|
"subway": { |
||||
|
"sign": "<img 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 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,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,117 @@ |
|||||
|
{ |
||||
|
"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": [ |
||||
|
"{% if tags.maxspeed is not defined %}", |
||||
|
"{% set maxspeedKmh = null %}", |
||||
|
"{% set maxspeed = null %}", |
||||
|
"{% set unit = null %}", |
||||
|
"{% else %}", |
||||
|
"", |
||||
|
"{% if tags.maxspeed|matches(\"^[0-9]+$\") %}", |
||||
|
"{% set maxspeedKmh = tags.maxspeed %}", |
||||
|
"{% set maxspeed = tags.maxspeed %}", |
||||
|
"{% set unit = \"km/h\" %}", |
||||
|
"{% endif %}", |
||||
|
"", |
||||
|
"", |
||||
|
"{% set m = tags.maxspeed|matches(\"(^[0-9]+) mph$\") %}", |
||||
|
"{% if m %}", |
||||
|
"{% set maxspeedKmh = m[1] * 1.60934 %}", |
||||
|
"{% set maxspeed = 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 %}" |
||||
|
], |
||||
|
"description": [ |
||||
|
"{% if maxspeed %}", |
||||
|
"<span style='color: {{ color }}'>{{ maxspeed }} {{ unit }}</span>", |
||||
|
"{% elseif tags.maxspeed %}", |
||||
|
"{{ tags.maxspeed }}", |
||||
|
"{% else %}", |
||||
|
"{{ trans('unknown') }}", |
||||
|
"{% endif %}" |
||||
|
], |
||||
|
"markerSymbol": null, |
||||
|
"listMarkerSymbol": "line", |
||||
|
"style": { |
||||
|
"width": "3", |
||||
|
"color": "{{ color }}", |
||||
|
"text": "{{ maxspeed }} ", |
||||
|
"textRepeat": "1", |
||||
|
"textFontWeight": "bold" |
||||
|
} |
||||
|
}, |
||||
|
"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,37 @@ |
|||||
|
{ |
||||
|
"type": "overpass", |
||||
|
"name": { |
||||
|
"de": "Erneuerbare Energien", |
||||
|
"en": "Renewables" |
||||
|
}, |
||||
|
"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 %}" |
||||
|
} |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue