mirror of
https://github.com/openstreetmap/id-tagging-schema.git
synced 2025-10-26 20:33:51 +01:00
Merge branch 'main' into crossing_markings
This commit is contained in:
commit
506fe2b2b6
124 changed files with 1772 additions and 158 deletions
|
|
@ -678,6 +678,10 @@
|
|||
"old": {"generator:source": "photovoltaic"},
|
||||
"replace": {"generator:source": "solar", "generator:method": "photovoltaic"}
|
||||
},
|
||||
{
|
||||
"old": {"generator:method": "solar"},
|
||||
"replace": {"generator:source": "solar"}
|
||||
},
|
||||
{
|
||||
"old": {"golf": "faiway"},
|
||||
"replace": {"golf": "fairway"}
|
||||
|
|
@ -710,6 +714,10 @@
|
|||
"old": {"highway": "abandoned"},
|
||||
"replace": {"abandoned:highway": "*"}
|
||||
},
|
||||
{
|
||||
"old": {"highway": "service", "service": "busway"},
|
||||
"replace": {"highway": "busway"}
|
||||
},
|
||||
{
|
||||
"old": {"highway": "bridleway", "horse": "no"},
|
||||
"replace": {"highway": "path", "horse": "no"}
|
||||
|
|
@ -774,6 +782,14 @@
|
|||
"old": {"internet_access": "wifi"},
|
||||
"replace": {"internet_access": "wlan"}
|
||||
},
|
||||
{
|
||||
"old": {"internet_access": "wi-fi"},
|
||||
"replace": {"internet_access": "wlan"}
|
||||
},
|
||||
{
|
||||
"old": {"internet_access": "WLAN"},
|
||||
"replace": {"internet_access": "wlan"}
|
||||
},
|
||||
{
|
||||
"old": {"internet_access:fee": "0"},
|
||||
"replace": {"internet_access:fee": "no"}
|
||||
|
|
@ -878,6 +894,14 @@
|
|||
"old": {"landuse": "reservoir"},
|
||||
"replace": {"natural": "water", "water": "reservoir"}
|
||||
},
|
||||
{
|
||||
"old": {"landuse": "reservoir", "reservoir_type": "tailings", "natural": "water", "water": "reservoir"},
|
||||
"replace": {"man_made": "tailings_pond"}
|
||||
},
|
||||
{
|
||||
"old": {"landuse": "reservoir", "reservoir_type": "tailings"},
|
||||
"replace": {"man_made": "tailings_pond"}
|
||||
},
|
||||
{
|
||||
"old": {"landuse": "school"},
|
||||
"replace": {"landuse": "education"}
|
||||
|
|
@ -1066,6 +1090,10 @@
|
|||
"old": {"natural": "marsh"},
|
||||
"replace": {"natural": "wetland", "wetland": "marsh"}
|
||||
},
|
||||
{
|
||||
"old": {"natural": "water", "water": "reservoir", "reservoir_type": "tailings"},
|
||||
"replace": {"man_made": "tailings_pond"}
|
||||
},
|
||||
{
|
||||
"old": {"natural": "waterfall"},
|
||||
"replace": {"waterway": "waterfall"}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,6 @@
|
|||
"addr:suburb",
|
||||
"addr:unit"
|
||||
],
|
||||
"icon": "address",
|
||||
"label": "Address",
|
||||
"strings": {
|
||||
"placeholders": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
{
|
||||
"key": "bicycle_parking",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
"label": "Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"stands": "Stand (supports bicycle frame)",
|
||||
"wall_loops": "Wheelbender (supports wheel only)",
|
||||
"shed": "Closed Shed",
|
||||
"lockers": "Individual Lockers",
|
||||
"building": "In a Building",
|
||||
"handlebar_holder": "Handlebar Holder"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
5
data/fields/bike_ride.json
Normal file
5
data/fields/bike_ride.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"key": "bike_ride",
|
||||
"type": "check",
|
||||
"label": "Bike and Ride"
|
||||
}
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
"key": "building:levels",
|
||||
"type": "number",
|
||||
"minValue": 0,
|
||||
"label": "Building Levels",
|
||||
"placeholder": "2, 4, 6...",
|
||||
"label": "{building/levels}",
|
||||
"placeholder": "{building/levels}",
|
||||
"prerequisiteTag": {
|
||||
"key": "building",
|
||||
"valueNot": "no"
|
||||
|
|
|
|||
10
data/fields/building/prefabricated.json
Normal file
10
data/fields/building/prefabricated.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"key": "building:prefabricated",
|
||||
"type": "check",
|
||||
"terms": [
|
||||
"manufactured",
|
||||
"modular",
|
||||
"portable"
|
||||
],
|
||||
"label": "Prefabricated"
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"key": "colour",
|
||||
"type": "text",
|
||||
"type": "colour",
|
||||
"label": "Color"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "contact:webcam",
|
||||
"type": "url",
|
||||
"icon": "website",
|
||||
"label": "Webcam URL",
|
||||
"placeholder": "http://example.com/"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,35 @@
|
|||
{
|
||||
"key": "crop",
|
||||
"type": "semiCombo",
|
||||
"label": "Crops"
|
||||
"label": "Crops",
|
||||
"strings": {
|
||||
"options": {
|
||||
"asparagus": "Asparagus",
|
||||
"barley": "Barley",
|
||||
"beet": "Beets",
|
||||
"cassava": "Cassava",
|
||||
"coffee": "Coffee",
|
||||
"cotton": "Cotton",
|
||||
"cranberries": "Cranberries",
|
||||
"fast_growing_wood": "Short-Rotation Coppice",
|
||||
"flowers": "Flowers",
|
||||
"grape": "Grapes",
|
||||
"grass": "Grass",
|
||||
"hop": "Hops",
|
||||
"lavender": "Lavender",
|
||||
"maize": "Corn",
|
||||
"potato": "Potatoes",
|
||||
"rape": "Rapeseed",
|
||||
"rice": "Rice",
|
||||
"strawberry": "Strawberries",
|
||||
"sugar_beet": "Sugar Beets",
|
||||
"sugarcane": "Sugarcane",
|
||||
"sunflower": "Sunflowers",
|
||||
"soy": "Soybeans",
|
||||
"tea": "Tea",
|
||||
"tobacco": "Tobacco",
|
||||
"vegetable": "Vegetables",
|
||||
"wheat": "Wheat"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,11 +13,5 @@
|
|||
"undefined": "No",
|
||||
"table": "Yes"
|
||||
}
|
||||
},
|
||||
"terms": [
|
||||
"flat top",
|
||||
"hump",
|
||||
"speed",
|
||||
"slow"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"key": "departures_board",
|
||||
"type": "combo",
|
||||
"label": "Departures Board",
|
||||
"label": "Departures/Arrivals Board",
|
||||
"strings": {
|
||||
"options": {
|
||||
"yes": "Yes",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"key": "dispensing",
|
||||
"type": "check",
|
||||
"label": "Dispenses Prescriptions",
|
||||
"default": "yes"
|
||||
"label": "Dispenses Prescriptions"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "ele",
|
||||
"type": "number",
|
||||
"icon": "elevation",
|
||||
"label": "Elevation (Meters)",
|
||||
"geometry": [
|
||||
"line",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "ele",
|
||||
"type": "number",
|
||||
"icon": "elevation",
|
||||
"label": "Elevation (Meters)",
|
||||
"universal": true,
|
||||
"geometry": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,19 @@
|
|||
{
|
||||
"key": "entrance",
|
||||
"type": "typeCombo",
|
||||
"label": "Type"
|
||||
"label": "Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"yes": "Unspecified",
|
||||
"main": "Main",
|
||||
"secondary": "Secondary",
|
||||
"service": "Service",
|
||||
"exit": "Exit Only",
|
||||
"entrance": "Entrance Only",
|
||||
"emergency": "Emergency Exit",
|
||||
"staircase": "Staircase",
|
||||
"home": "Private House or Apartment",
|
||||
"garage": "Garage Door"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
22
data/fields/fuel/fuel_multi-RU.json
Normal file
22
data/fields/fuel/fuel_multi-RU.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"key": "fuel:",
|
||||
"type": "multiCombo",
|
||||
"label": "{fuel/fuel_multi}",
|
||||
"stringsCrossReference": "{fuel/fuel_multi}",
|
||||
"options": [
|
||||
"diesel",
|
||||
"octane_80",
|
||||
"octane_92",
|
||||
"octane_95",
|
||||
"octane_98",
|
||||
"octane_100",
|
||||
"lpg",
|
||||
"cng"
|
||||
],
|
||||
"autoSuggestions": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"RU"
|
||||
]
|
||||
}
|
||||
}
|
||||
58
data/fields/fuel/fuel_multi.json
Normal file
58
data/fields/fuel/fuel_multi.json
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"key": "fuel:",
|
||||
"type": "multiCombo",
|
||||
"label": "Fuel Types",
|
||||
"strings": {
|
||||
"options": {
|
||||
"diesel": "Diesel",
|
||||
"GTL_diesel": "GTL Diesel",
|
||||
"HGV_diesel": "Truck Diesel",
|
||||
"biodiesel": "Biodiesel",
|
||||
"octane_80": "Gasoline (80 Octane)",
|
||||
"octane_85": "Gasoline (85 Octane)",
|
||||
"octane_87": "Gasoline (87 Octane)",
|
||||
"octane_88": "Gasoline (88 Octane)",
|
||||
"octane_89": "Gasoline (89 Octane)",
|
||||
"octane_90": "Gasoline (90 Octane)",
|
||||
"octane_91": "Gasoline (91 Octane)",
|
||||
"octane_92": "Gasoline (92 Octane)",
|
||||
"octane_93": "Gasoline (93 Octane)",
|
||||
"octane_95": "Gasoline (95 Octane)",
|
||||
"octane_97": "Gasoline (97 Octane)",
|
||||
"octane_98": "Gasoline (98 Octane)",
|
||||
"octane_100": "Gasoline (100 Octane)",
|
||||
"e10": "E10 Gasoline",
|
||||
"e85": "E85 Gasoline",
|
||||
"lpg": "Liquefied Natural Gas (LPG)",
|
||||
"cng": "Compressed Natural Gas (CNG)",
|
||||
"propane": "Propane",
|
||||
"LH2": "Liquid Hydrogen",
|
||||
"h70": "Gaseous Hydrogen (700 bar)",
|
||||
"adblue": "AdBlue / AUS 32",
|
||||
"adblue:canister": "AdBlue / AUS 32 (sold in canisters)"
|
||||
}
|
||||
},
|
||||
"autoSuggestions": true,
|
||||
"caseSensitive": true,
|
||||
"terms": [
|
||||
"diesel",
|
||||
"gas",
|
||||
"gasoline",
|
||||
"petrol",
|
||||
"ethanol",
|
||||
"biodiesel",
|
||||
"bioethanol",
|
||||
"fuel",
|
||||
"fuel mix",
|
||||
"mixture",
|
||||
"propane",
|
||||
"lpg",
|
||||
"cng",
|
||||
"lng"
|
||||
],
|
||||
"locationSet": {
|
||||
"exclude": [
|
||||
"RU"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"key": "fuel:",
|
||||
"type": "multiCombo",
|
||||
"label": "Fuel Types"
|
||||
}
|
||||
|
|
@ -1,5 +1,23 @@
|
|||
{
|
||||
"key": "generator:method",
|
||||
"type": "combo",
|
||||
"label": "Method"
|
||||
"label": "Method",
|
||||
"strings": {
|
||||
"options": {
|
||||
"fission": "Fission",
|
||||
"fusion": "Fusion",
|
||||
"wind_turbine": "Wind Turbine",
|
||||
"water-storage": "Reservoir",
|
||||
"water-pumped-storage": "Pumped-Storage",
|
||||
"run-of-the-river": "Run-of-the-River",
|
||||
"barrage": "Tidal Barrage",
|
||||
"stream": "Tidal Stream",
|
||||
"thermal": "Solar Thermal",
|
||||
"photovoltaic": "Photovoltaic",
|
||||
"combustion": "Combustion",
|
||||
"gasification": "Gasification",
|
||||
"anaerobic_digestion": "Anaerobic Digestion"
|
||||
}
|
||||
},
|
||||
"autoSuggestions": false
|
||||
}
|
||||
|
|
|
|||
16
data/fields/generator/method/hydro.json
Normal file
16
data/fields/generator/method/hydro.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"key": "generator:method",
|
||||
"type": "combo",
|
||||
"label": "{generator/method}",
|
||||
"stringsCrossReference": "{generator/method}",
|
||||
"options": [
|
||||
"water-storage",
|
||||
"water-pumped-storage",
|
||||
"run-of-the-river"
|
||||
],
|
||||
"autoSuggestions": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "generator:source",
|
||||
"value": "hydro"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,26 @@
|
|||
{
|
||||
"key": "generator:source",
|
||||
"type": "combo",
|
||||
"label": "Source"
|
||||
"label": "Source",
|
||||
"strings": {
|
||||
"options": {
|
||||
"nuclear": "Nuclear Power",
|
||||
"wind": "Wind",
|
||||
"hydro": "Hydropower",
|
||||
"tidal": "Tidal Power",
|
||||
"wave": "Wave Power",
|
||||
"geothermal": "Geothermal Energy",
|
||||
"solar": "Solar Radiation",
|
||||
"coal": "Coal",
|
||||
"gas": "Natural Gas",
|
||||
"biomass": "Plant Matter",
|
||||
"biofuel": "Plant Based Fuels",
|
||||
"biogas": "Biogas",
|
||||
"oil": "Oil",
|
||||
"diesel": "Diesel",
|
||||
"gasoline": "Gasoline",
|
||||
"waste": "Waste",
|
||||
"battery": "Battery"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,94 @@
|
|||
{
|
||||
"key": "healthcare:speciality",
|
||||
"type": "semiCombo",
|
||||
"label": "Specialties"
|
||||
"label": "Specialties",
|
||||
"strings": {
|
||||
"options": {
|
||||
"abortion": "Abortion",
|
||||
"acupuncture": "Acupuncture",
|
||||
"allergology": "Allergy & Asthma",
|
||||
"anaesthetics": "Anesthesiology",
|
||||
"angiology": "Angiology",
|
||||
"anthroposophical": "Anthroposophic Medicine",
|
||||
"applied_kinesiology": "Applied Kinesiology",
|
||||
"aromatherapy": "Aromatherapy",
|
||||
"ayurveda": "Ayurveda",
|
||||
"behavior": "Behavior Therapy",
|
||||
"biochemistry": "Biochemistry",
|
||||
"biology": "Biology",
|
||||
"blood_check": "Blood Test",
|
||||
"body": "Body Therapy",
|
||||
"cardiology": "Cardiology",
|
||||
"cardiothoracic_surgery": "Cardiothoracic Surgery",
|
||||
"child_psychiatry": "Child & Adolescent Psychiatry",
|
||||
"chiropractic": "Chiropractic",
|
||||
"clinical_pathology": "Clinical Pathology",
|
||||
"community": "Community & Public Health",
|
||||
"depth": "Depth Psychology",
|
||||
"dermatology": "Dermatology",
|
||||
"dermatovenereology": "Dermatovenereology",
|
||||
"diabetology": "Diabetology",
|
||||
"diagnostic_radiology": "Diagnostic Radiology",
|
||||
"emergency": "Emergency Medicine",
|
||||
"endocrinology": "Endocrinology",
|
||||
"fertility": "Fertility",
|
||||
"gastroenterology": "Gastroenterology",
|
||||
"general": "General Practice",
|
||||
"geriatrics": "Geriatric Medicine",
|
||||
"gynaecology": "Obstetrics & Gynecology",
|
||||
"haematology": "Hematology",
|
||||
"hepatology": "Hepatology",
|
||||
"herbalism": "Herbalism",
|
||||
"homeopathy": "Homeopathy",
|
||||
"humanistic": "Humanistic Psychology",
|
||||
"hydrotherapy": "Hydrotherapy",
|
||||
"hypnosis": "Hypnosis",
|
||||
"infectious_diseases": "Infectious Disease",
|
||||
"intensive": "Intensive Care",
|
||||
"internal": "Internal Medicine",
|
||||
"dental_oral_maxillo_facial_surgery": "Dental, Oral & Maxillofacial Surgery",
|
||||
"naturopathy": "Naturopathy",
|
||||
"neonatology": "Neonatology",
|
||||
"nephrology": "Nephrology",
|
||||
"neurology": "Neurology",
|
||||
"neuropsychiatry": "Neuropsychiatry",
|
||||
"neurosurgery": "Neurosurgery",
|
||||
"nuclear": "Nuclear Medicine",
|
||||
"occupational": "Occupational Medicine",
|
||||
"oncology": "Oncology",
|
||||
"ophthalmology": "Ophthalmology",
|
||||
"orthodontics": "Orthodontics",
|
||||
"orthopaedics": "Orthopedic Surgery",
|
||||
"osteopathy": "Osteopathy",
|
||||
"otolaryngology": "Ear, Nose & Throat",
|
||||
"paediatric_surgery": "Pediatric Surgery",
|
||||
"paediatrics": "Pediatrics",
|
||||
"palliative": "Palliative Care",
|
||||
"pathology": "Pathology",
|
||||
"physiatry": "Physical Medicine & Rehabilitation",
|
||||
"plastic_surgery": "Plastic Surgery",
|
||||
"podiatry": "Podiatry",
|
||||
"proctology": "Colorectal Surgery",
|
||||
"psychiatry": "Psychiatry",
|
||||
"pulmonology": "Pulmonology",
|
||||
"radiology": "Radiology",
|
||||
"radiotherapy": "Radiotherapy",
|
||||
"reflexology": "Reflexology",
|
||||
"reiki": "Reiki",
|
||||
"rheumatology": "Rheumatology",
|
||||
"shiatsu": "Shiatsu",
|
||||
"stomatology": "Stomatology",
|
||||
"surgery": "General Surgery",
|
||||
"systemic": "Systemic Therapy",
|
||||
"traditional_chinese_medicine": "Traditional Chinese Medicine",
|
||||
"transplant": "Transplant Surgery",
|
||||
"trauma": "Trauma Surgery",
|
||||
"tropical": "Tropical Medicine",
|
||||
"tuina": "Tuī ná",
|
||||
"unani": "Unani Medicine",
|
||||
"urology": "Urology",
|
||||
"vaccination": "Vaccination",
|
||||
"vascular_surgery": "Vascular Surgery"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
"key": "note",
|
||||
"type": "textarea",
|
||||
"universal": true,
|
||||
"icon": "note",
|
||||
"label": "Note",
|
||||
"terms": [
|
||||
"comment"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,49 @@
|
|||
{
|
||||
"key": "payment:",
|
||||
"type": "multiCombo",
|
||||
"label": "Payment Types"
|
||||
"label": "Payment Types",
|
||||
"strings": {
|
||||
"options": {
|
||||
"account_cards": "Account Card",
|
||||
"app": "Mobile Application",
|
||||
"cards": "Payment Card",
|
||||
"cash": "Cash",
|
||||
"cheque": "Check",
|
||||
"coins": "Coins",
|
||||
"contactless": "Contactless Payment",
|
||||
"credit_cards": "Credit Card",
|
||||
"cryptocurrencies": "Cryptocurrency",
|
||||
"debit_cards": "Debit Card",
|
||||
"electronic_purses": "Electronic Purse",
|
||||
"notes": "Banknotes",
|
||||
"prepaid_ticket": "Prepaid Ticket",
|
||||
"telephone_cards": "Telephone Card",
|
||||
"alipay": "Alipay",
|
||||
"american_express": "American Express",
|
||||
"apple_pay": "Apple Pay",
|
||||
"bancomat": "Bancomat",
|
||||
"blik": "Blik",
|
||||
"clipper": "Clipper",
|
||||
"diners_club": "Diners Club",
|
||||
"discover_card": "Discover",
|
||||
"dkv": "DKV",
|
||||
"ep_easycard": "悠遊卡EasyCard",
|
||||
"ep_geldkarte": "GeldKarte",
|
||||
"ep_ipass": "iPASS一卡通",
|
||||
"girocard": "Girocard",
|
||||
"google_pay": "Google Pay",
|
||||
"jcb": "JCB",
|
||||
"maestro": "Maestro",
|
||||
"mastercard": "Mastercard",
|
||||
"mastercard_contactless": "Mastercard Contactless",
|
||||
"paypal": "PayPal",
|
||||
"unionpay": "UnionPay",
|
||||
"uta": "UTA",
|
||||
"v_pay": "V Pay",
|
||||
"visa": "Visa",
|
||||
"visa_debit": "Visa Debit",
|
||||
"visa_electron": "Visa Electron",
|
||||
"wechat": "WeChat Pay"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"key": "payment:",
|
||||
"type": "multiCombo",
|
||||
"label": "Payment Types",
|
||||
"label": "{payment_multi}",
|
||||
"prerequisiteTag": {
|
||||
"key": "fee",
|
||||
"valueNot": "no"
|
||||
}
|
||||
},
|
||||
"stringsCrossReference": "{payment_multi}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "phone",
|
||||
"type": "tel",
|
||||
"icon": "maki-telephone",
|
||||
"label": "Telephone",
|
||||
"placeholder": "+31 42 123 4567",
|
||||
"terms": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"key": "plant:method",
|
||||
"type": "combo",
|
||||
"label": "Generation Method"
|
||||
"label": "Generation Method",
|
||||
"stringsCrossReference": "{generator/method}",
|
||||
"autoSuggestions": false
|
||||
}
|
||||
|
|
|
|||
16
data/fields/plant/method/hydro.json
Normal file
16
data/fields/plant/method/hydro.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"key": "plant:method",
|
||||
"type": "combo",
|
||||
"label": "{plant/method}",
|
||||
"stringsCrossReference": "{generator/method}",
|
||||
"options": [
|
||||
"water-storage",
|
||||
"water-pumped-storage",
|
||||
"run-of-the-river"
|
||||
],
|
||||
"autoSuggestions": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "plant:source",
|
||||
"value": "hydro"
|
||||
}
|
||||
}
|
||||
15
data/fields/plant/method/solar.json
Normal file
15
data/fields/plant/method/solar.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"key": "plant:method",
|
||||
"type": "combo",
|
||||
"label": "{plant/method}",
|
||||
"stringsCrossReference": "{generator/method}",
|
||||
"options": [
|
||||
"thermal",
|
||||
"photovoltaic"
|
||||
],
|
||||
"autoSuggestions": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "plant:source",
|
||||
"value": "solar"
|
||||
}
|
||||
}
|
||||
15
data/fields/plant/method/waste.json
Normal file
15
data/fields/plant/method/waste.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"key": "plant:method",
|
||||
"type": "combo",
|
||||
"label": "{plant/method}",
|
||||
"stringsCrossReference": "{generator/method}",
|
||||
"options": [
|
||||
"combustion",
|
||||
"gasification"
|
||||
],
|
||||
"autoSuggestions": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "plant:source",
|
||||
"value": "waste"
|
||||
}
|
||||
}
|
||||
18
data/fields/plant/output.json
Normal file
18
data/fields/plant/output.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"key": "plant:output",
|
||||
"type": "multiCombo",
|
||||
"label": "Form of Power Output",
|
||||
"strings": {
|
||||
"options": {
|
||||
"electricity": "Electricity",
|
||||
"hot_water": "Hot Water",
|
||||
"hot_air": "Hot Air",
|
||||
"cold_water": "Cold Water",
|
||||
"cold_air": "Cold Air",
|
||||
"compressed_air": "Compressed Air",
|
||||
"steam": "Steam",
|
||||
"vacuum": "Vacuum"
|
||||
}
|
||||
},
|
||||
"autoSuggestions": false
|
||||
}
|
||||
|
|
@ -1,7 +1,11 @@
|
|||
{
|
||||
"key": "plant:output:electricity",
|
||||
"type": "typeCombo",
|
||||
"label": "Power Output",
|
||||
"label": "Electric Power Output",
|
||||
"placeholder": "500 MW, 1000 MW, 2000 MW...",
|
||||
"snake_case": false
|
||||
"snake_case": false,
|
||||
"prerequisiteTag": {
|
||||
"key": "plant:output:electricity",
|
||||
"valueNot": "no"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"key": "plant:source",
|
||||
"type": "combo",
|
||||
"label": "Energy Source"
|
||||
"label": "Energy Source",
|
||||
"stringsCrossReference": "{generator/source}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,8 @@
|
|||
"key": "population",
|
||||
"type": "number",
|
||||
"minValue": 0,
|
||||
"label": "Population"
|
||||
"label": "Population",
|
||||
"terms": [
|
||||
"census"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
12
data/fields/population/date.json
Normal file
12
data/fields/population/date.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"key": "population:date",
|
||||
"type": "text",
|
||||
"label": "Population Date",
|
||||
"placeholder": "YYYY-MM-DD",
|
||||
"prerequisiteTag": {
|
||||
"key": "population"
|
||||
},
|
||||
"terms": [
|
||||
"census date"
|
||||
]
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
"key": "recycling:",
|
||||
"type": "multiCombo",
|
||||
"label": "Accepts",
|
||||
"caseSensitive": true,
|
||||
"strings": {
|
||||
"options": {
|
||||
"glass_bottles": "Glass Bottles and Jars",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,31 @@
|
|||
{
|
||||
"key": "religion",
|
||||
"type": "combo",
|
||||
"label": "Religion"
|
||||
"label": "Religion",
|
||||
"strings": {
|
||||
"options": {
|
||||
"bahai": "Bahá’í",
|
||||
"benzhu": "Benzhu",
|
||||
"buddhist": "Buddhist",
|
||||
"caodaism": "Caodaist",
|
||||
"chinese_folk": "Chinese Folk Religion",
|
||||
"christian": "Christian",
|
||||
"confucian": "Confucian",
|
||||
"hindu": "Hindu",
|
||||
"jain": "Jain",
|
||||
"jewish": "Jewish",
|
||||
"multifaith": "Multifaith",
|
||||
"muslim": "Muslim",
|
||||
"none": "Nonreligious",
|
||||
"pagan": "Pagan",
|
||||
"shinto": "Shinto",
|
||||
"sikh": "Sikh",
|
||||
"spiritualist": "Spiritualist",
|
||||
"taoist": "Taoist",
|
||||
"tenrikyo": "Tenrikyo",
|
||||
"unitarian_universalist": "Unitarian Universalist",
|
||||
"vietnamese_folk": "Vietnamese Folk Religion",
|
||||
"voodoo": "Voodoo"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"icon": "iD-restrictions",
|
||||
"usage": "manual",
|
||||
"reference": {
|
||||
"rtype": "restriction"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "source",
|
||||
"type": "semiCombo",
|
||||
"icon": "source",
|
||||
"universal": true,
|
||||
"label": "Sources",
|
||||
"snake_case": false,
|
||||
|
|
|
|||
14
data/fields/source/population.json
Normal file
14
data/fields/source/population.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"key": "source:population",
|
||||
"type": "combo",
|
||||
"label": "Population Source",
|
||||
"prerequisiteTag": {
|
||||
"key": "population"
|
||||
},
|
||||
"snake_case": false,
|
||||
"caseSensitive": true,
|
||||
"terms": [
|
||||
"census",
|
||||
"population reference"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,5 +1,19 @@
|
|||
{
|
||||
"key": "substation",
|
||||
"type": "typeCombo",
|
||||
"label": "Type"
|
||||
"label": "Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"transmission": "High-Voltage Transmission",
|
||||
"distribution": "Regional Distribution",
|
||||
"minor_distribution": "Local Distribution",
|
||||
"industrial": "Industrial",
|
||||
"generation": "Generation",
|
||||
"transition": "Overground/Underground Transition",
|
||||
"traction": "Traction System Supply",
|
||||
"converter": "High-Voltage AC/DC Converter",
|
||||
"compensation": "Reactive Power Compensation"
|
||||
}
|
||||
},
|
||||
"autoSuggestions": false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,11 +12,17 @@
|
|||
"compacted": "Compacted",
|
||||
"concrete": "Concrete",
|
||||
"paving_stones": "Paving Stones",
|
||||
"sett": "Sett",
|
||||
"dirt": "Dirt",
|
||||
"grass": "Grass",
|
||||
"sand": "Sand",
|
||||
"wood": "Wood",
|
||||
"artificial_turf": "Artificial Turf"
|
||||
"metal": "Metal",
|
||||
"artificial_turf": "Artificial Turf",
|
||||
"unhewn_cobblestone": "Cobblestone (uncut, rounded stones)",
|
||||
"mud": "Persistently Muddy",
|
||||
"woodchips": "Woodchips",
|
||||
"salt": "Salt"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
16
data/fields/toilets/wheelchair.json
Normal file
16
data/fields/toilets/wheelchair.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"key": "toilets/wheelchair",
|
||||
"type": "radio",
|
||||
"strings": {
|
||||
"options": {
|
||||
"yes": "Yes",
|
||||
"limited": "Limited",
|
||||
"no": "No"
|
||||
}
|
||||
},
|
||||
"label": "Wheelchair Accessible Toilet",
|
||||
"prerequisiteTag": {
|
||||
"key": "toilets",
|
||||
"valueNot": "no"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
{
|
||||
"key": "tunnel",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
"label": "Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"avalanche_protector": "Avalanche Protector",
|
||||
"building_passage": "Building Passage",
|
||||
"culvert": "Culvert",
|
||||
"flooded": "Flooded Tunnel"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
17
data/fields/two_sided.json
Normal file
17
data/fields/two_sided.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"key": "two_sided",
|
||||
"type": "defaultCheck",
|
||||
"label": "Two-Sided",
|
||||
"terms": [
|
||||
"double-sided"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"strings": {
|
||||
"options": {
|
||||
"undefined": "No",
|
||||
"yes": "Yes"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"key": "website",
|
||||
"type": "url",
|
||||
"icon": "website",
|
||||
"placeholder": "https://example.com",
|
||||
"label": "Website",
|
||||
"terms": [
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
"no": "No"
|
||||
}
|
||||
},
|
||||
"icon": "maki-wheelchair",
|
||||
"label": "Wheelchair Access",
|
||||
"terms": [
|
||||
"handicap access"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
"wikipedia"
|
||||
],
|
||||
"type": "wikidata",
|
||||
"icon": "wikipedia",
|
||||
"universal": true,
|
||||
"label": "Wikidata"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
"wikidata"
|
||||
],
|
||||
"type": "wikipedia",
|
||||
"icon": "wikipedia",
|
||||
"universal": true,
|
||||
"label": "Wikipedia"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "maki-bank",
|
||||
"icon": "temaki-atm2",
|
||||
"fields": [
|
||||
"operator",
|
||||
"network",
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
"charge_fee"
|
||||
],
|
||||
"moreFields": [
|
||||
"bike_ride",
|
||||
"colour",
|
||||
"indoor",
|
||||
"level",
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@
|
|||
"reservation",
|
||||
"smoking",
|
||||
"takeaway",
|
||||
"toilets",
|
||||
"toilets/wheelchair",
|
||||
"wheelchair",
|
||||
"highchair"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -16,5 +16,10 @@
|
|||
"amenity": "community_centre",
|
||||
"lgbtq": "primary"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "community_centre",
|
||||
"lgbtq": "primary",
|
||||
"community_centre:for": "lgbtq"
|
||||
},
|
||||
"name": "LGBTQ+ Community Center"
|
||||
}
|
||||
|
|
|
|||
22
data/presets/amenity/fast_food/cafeteria.json
Normal file
22
data/presets/amenity/fast_food/cafeteria.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"icon": "maki-restaurant",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"canteen",
|
||||
"dining hall",
|
||||
"lunchroom",
|
||||
"refectory"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"fast_food": "cafeteria"
|
||||
},
|
||||
"fields": [
|
||||
"{amenity/fast_food}",
|
||||
"access_simple"
|
||||
],
|
||||
"name": "Cafeteria"
|
||||
}
|
||||
|
|
@ -5,7 +5,8 @@
|
|||
"brand",
|
||||
"operator",
|
||||
"address",
|
||||
"fuel_multi",
|
||||
"fuel/fuel_multi",
|
||||
"fuel/fuel_multi-RU",
|
||||
"self_service",
|
||||
"building_area"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
"ref/FR/siret-FR",
|
||||
"real_fire-GB-IE",
|
||||
"sport_pub",
|
||||
"toilets",
|
||||
"toilets/wheelchair",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@
|
|||
"informal",
|
||||
"start_date",
|
||||
"capacity",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"moreFields": [
|
||||
"internet_access",
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@
|
|||
"sport_pub",
|
||||
"stars",
|
||||
"takeaway",
|
||||
"toilets",
|
||||
"toilets/wheelchair",
|
||||
"wheelchair",
|
||||
"highchair"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@
|
|||
"grades",
|
||||
"religion",
|
||||
"denomination",
|
||||
"website"
|
||||
"website",
|
||||
"building_area"
|
||||
],
|
||||
"moreFields": [
|
||||
"capacity",
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
"min_age"
|
||||
],
|
||||
"geometry": [
|
||||
"line",
|
||||
"area"
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"terms": [
|
||||
"theme park",
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
"height",
|
||||
"material"
|
||||
],
|
||||
"moreFields": [
|
||||
"{barrier}",
|
||||
"two_sided"
|
||||
],
|
||||
"geometry": [
|
||||
"line",
|
||||
"area"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@
|
|||
"fields": [
|
||||
"material"
|
||||
],
|
||||
"moreFields": [
|
||||
"{barrier}",
|
||||
"two_sided"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"access"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,8 @@
|
|||
"fields": [
|
||||
"kerb",
|
||||
"tactile_paving",
|
||||
"wheelchair"
|
||||
"wheelchair",
|
||||
"two_sided"
|
||||
],
|
||||
"moreFields": [
|
||||
"material"
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
"architect",
|
||||
"building/levels/underground",
|
||||
"building/material",
|
||||
"building/prefabricated",
|
||||
"ele",
|
||||
"gnis/feature_id-US",
|
||||
"layer",
|
||||
|
|
|
|||
11
data/presets/building/fire_station.json
Normal file
11
data/presets/building/fire_station.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"icon": "fas-house-fire",
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "fire_station"
|
||||
},
|
||||
"matchScore": 0.5,
|
||||
"name": "Fire Station Building"
|
||||
}
|
||||
|
|
@ -5,6 +5,10 @@
|
|||
"sport",
|
||||
"{club}"
|
||||
],
|
||||
"moreFields": [
|
||||
"{club}",
|
||||
"access_simple"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
|
|
|||
|
|
@ -23,5 +23,5 @@
|
|||
"tags": {
|
||||
"craft": "brewery"
|
||||
},
|
||||
"name": "Brewery"
|
||||
"name": "Craft Brewery"
|
||||
}
|
||||
|
|
|
|||
27
data/presets/highway/busway.json
Normal file
27
data/presets/highway/busway.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "temaki-bus",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"oneway",
|
||||
"structure",
|
||||
"covered"
|
||||
],
|
||||
"moreFields": [
|
||||
"trolley_wire"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "busway"
|
||||
},
|
||||
"aliases": [
|
||||
"Transitway",
|
||||
"Bus Rapid Transit"
|
||||
],
|
||||
"terms": [
|
||||
"brt"
|
||||
],
|
||||
"name": "Busway"
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Motorway Link",
|
||||
"name": "{highway/motorway_link}",
|
||||
"icon": "iD-highway-motorway-link",
|
||||
"fields": [
|
||||
"destination_oneway",
|
||||
|
|
@ -34,14 +34,6 @@
|
|||
"tags": {
|
||||
"highway": "motorway_link"
|
||||
},
|
||||
"terms": [
|
||||
"exit",
|
||||
"ramp",
|
||||
"road",
|
||||
"street",
|
||||
"on ramp",
|
||||
"off ramp"
|
||||
],
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"ca",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Primary Link",
|
||||
"name": "{highway/primary_link}",
|
||||
"icon": "iD-highway-primary-link",
|
||||
"fields": [
|
||||
"destination_oneway",
|
||||
|
|
@ -38,13 +38,6 @@
|
|||
"tags": {
|
||||
"highway": "primary_link"
|
||||
},
|
||||
"terms": [
|
||||
"on ramp",
|
||||
"off ramp",
|
||||
"ramp",
|
||||
"road",
|
||||
"street"
|
||||
],
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"ca",
|
||||
|
|
|
|||
41
data/presets/highway/service_area.json
Normal file
41
data/presets/highway/service_area.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"icon": "iD-highway-service",
|
||||
"fields": [
|
||||
"name",
|
||||
"service",
|
||||
"maxspeed",
|
||||
"surface",
|
||||
"structure",
|
||||
"access"
|
||||
],
|
||||
"moreFields": [
|
||||
"covered_no",
|
||||
"flood_prone",
|
||||
"lit",
|
||||
"maxheight",
|
||||
"maxspeed/advisory",
|
||||
"maxweight_bridge",
|
||||
"smoothness",
|
||||
"trolley_wire"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service"
|
||||
},
|
||||
"terms": [
|
||||
"maneuvering area",
|
||||
"maneuvering surface",
|
||||
"manoeuvring area",
|
||||
"manoeuvring surface",
|
||||
"paved lot",
|
||||
"service road",
|
||||
"service yard",
|
||||
"shunting area",
|
||||
"staging lot",
|
||||
"yard"
|
||||
],
|
||||
"searchable": false,
|
||||
"name": "Paved Service Area"
|
||||
}
|
||||
|
|
@ -33,26 +33,35 @@
|
|||
"agricultural road",
|
||||
"atv",
|
||||
"carriage road",
|
||||
"dirt road",
|
||||
"double track",
|
||||
"farm road",
|
||||
"fire road",
|
||||
"forest road",
|
||||
"forestry road",
|
||||
"four wheel drive",
|
||||
"haul road",
|
||||
"haulage road",
|
||||
"high-clearance",
|
||||
"jeep",
|
||||
"land access road",
|
||||
"logging road",
|
||||
"mining road",
|
||||
"offroad",
|
||||
"off-road",
|
||||
"overgrown",
|
||||
"primitive",
|
||||
"quad",
|
||||
"ranch road",
|
||||
"rut",
|
||||
"track",
|
||||
"track road",
|
||||
"two-track",
|
||||
"two track",
|
||||
"unmaintained",
|
||||
"vehicular trail",
|
||||
"woods road"
|
||||
],
|
||||
"name": "Track / Land-Access Road"
|
||||
"name": "Track / Land-Access Road",
|
||||
"aliases": [
|
||||
"Land-Access Road",
|
||||
"Track Road"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Trunk Link",
|
||||
"name": "{highway/trunk_link}",
|
||||
"icon": "iD-highway-trunk-link",
|
||||
"fields": [
|
||||
"{highway/motorway_link-US-CA}"
|
||||
|
|
@ -13,13 +13,6 @@
|
|||
"tags": {
|
||||
"highway": "trunk_link"
|
||||
},
|
||||
"terms": [
|
||||
"on ramp",
|
||||
"off ramp",
|
||||
"ramp",
|
||||
"road",
|
||||
"street"
|
||||
],
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"ca",
|
||||
|
|
|
|||
27
data/presets/landuse/industrial/_brewery.json
Normal file
27
data/presets/landuse/industrial/_brewery.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "temaki-storage_fermenter",
|
||||
"fields": [
|
||||
"{man_made/works/brewery}",
|
||||
"product"
|
||||
],
|
||||
"moreFields": [
|
||||
"{man_made/works/brewery}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"industrial": "brewery"
|
||||
},
|
||||
"addTags": {
|
||||
"landuse": "industrial"
|
||||
},
|
||||
"reference": {
|
||||
"key": "industrial",
|
||||
"value": "brewery"
|
||||
},
|
||||
"searchable": false,
|
||||
"matchScore": 0.9,
|
||||
"name": "{man_made/works/brewery}"
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
"opening_hours"
|
||||
],
|
||||
"moreFields": [
|
||||
"access_simple",
|
||||
"dog",
|
||||
"email",
|
||||
"fax",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"opening_hours"
|
||||
],
|
||||
"moreFields": [
|
||||
"access_simple",
|
||||
"dog",
|
||||
"email",
|
||||
"fax",
|
||||
|
|
|
|||
19
data/presets/leisure/pitch/american_handball.json
Normal file
19
data/presets/leisure/pitch/american_handball.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"icon": "temaki-wall",
|
||||
"geometry": [
|
||||
"area",
|
||||
"point"
|
||||
],
|
||||
"tags": {
|
||||
"leisure": "pitch",
|
||||
"sport": "american_handball"
|
||||
},
|
||||
"reference": {
|
||||
"key": "sport",
|
||||
"value": "american_handball"
|
||||
},
|
||||
"terms": [
|
||||
"wallball"
|
||||
],
|
||||
"name": "American Handball Court"
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
"fields": [
|
||||
"name",
|
||||
"sport",
|
||||
"building",
|
||||
"building_area",
|
||||
"address",
|
||||
"fee",
|
||||
"opening_hours",
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
"charge_fee"
|
||||
],
|
||||
"moreFields": [
|
||||
"access_simple",
|
||||
"email",
|
||||
"fax",
|
||||
"gnis/feature_id-US",
|
||||
|
|
|
|||
|
|
@ -31,5 +31,7 @@
|
|||
"value": "bridge"
|
||||
},
|
||||
"name": "Bridge Area",
|
||||
"matchScore": 0.85
|
||||
"aliases": [
|
||||
"Bridge"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
26
data/presets/man_made/tailings_pond.json
Normal file
26
data/presets/man_made/tailings_pond.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"icon": "maki-water",
|
||||
"fields": [
|
||||
"name",
|
||||
"resource",
|
||||
"operator",
|
||||
"intermittent"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "tailings_pond"
|
||||
},
|
||||
"terms": [
|
||||
"mining",
|
||||
"separation",
|
||||
"slurry"
|
||||
],
|
||||
"aliases": [
|
||||
"Tailing Pond",
|
||||
"Settling Pond",
|
||||
"Settling Pit"
|
||||
],
|
||||
"name": "Tailings Pond"
|
||||
}
|
||||
31
data/presets/man_made/works/brewery.json
Normal file
31
data/presets/man_made/works/brewery.json
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"icon": "temaki-storage_fermenter",
|
||||
"fields": [
|
||||
"{man_made/works}",
|
||||
"website"
|
||||
],
|
||||
"moreFields": [
|
||||
"{man_made/works}",
|
||||
"min_age"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"alcohol",
|
||||
"beer",
|
||||
"bier",
|
||||
"booze",
|
||||
"cider"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "works",
|
||||
"product": "beer"
|
||||
},
|
||||
"reference": {
|
||||
"key": "product",
|
||||
"value": "beer"
|
||||
},
|
||||
"name": "Industrial Brewery"
|
||||
}
|
||||
23
data/presets/natural/tree_stump.json
Normal file
23
data/presets/natural/tree_stump.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"icon": "temaki-tree_stump",
|
||||
"geometry": [
|
||||
"area",
|
||||
"point"
|
||||
],
|
||||
"moreFields": [
|
||||
"leaf_type_singular",
|
||||
"leaf_cycle_singular",
|
||||
"denotation",
|
||||
"height",
|
||||
"circumference",
|
||||
"{natural/tree}"
|
||||
],
|
||||
"tags": {
|
||||
"natural": "tree_stump"
|
||||
},
|
||||
"terms": [
|
||||
"cut tree",
|
||||
"removed tree"
|
||||
],
|
||||
"name": "Tree Stump"
|
||||
}
|
||||
23
data/presets/natural/water/oxbow.json
Normal file
23
data/presets/natural/water/oxbow.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"icon": "maki-water",
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"natural": "water",
|
||||
"water": "oxbow"
|
||||
},
|
||||
"reference": {
|
||||
"key": "water",
|
||||
"value": "oxbow"
|
||||
},
|
||||
"terms": [
|
||||
"anabranch",
|
||||
"billabong",
|
||||
"cut off",
|
||||
"meander",
|
||||
"oxbow",
|
||||
"resaca"
|
||||
],
|
||||
"name": "Oxbow Lake"
|
||||
}
|
||||
14
data/presets/office/property_management.json
Normal file
14
data/presets/office/property_management.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"icon": "maki-suitcase",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "property_management"
|
||||
},
|
||||
"terms": [
|
||||
"property rental"
|
||||
],
|
||||
"name": "Property Management / Leasing Office"
|
||||
}
|
||||
14
data/presets/office/union.json
Normal file
14
data/presets/office/union.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"icon": "maki-suitcase",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "union"
|
||||
},
|
||||
"terms": [
|
||||
"trade union"
|
||||
],
|
||||
"name": "Labor Union Office"
|
||||
}
|
||||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-city",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-triangle-stroked",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-triangle-stroked",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"moreFields": [
|
||||
"gnis/feature_id-US"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-triangle-stroked",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-triangle-stroked",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-town",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"icon": "maki-village",
|
||||
"fields": [
|
||||
"name",
|
||||
"population"
|
||||
"population",
|
||||
"population/date",
|
||||
"source/population"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
28
data/presets/power/catenary_mast.json
Normal file
28
data/presets/power/catenary_mast.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "temaki-power_pole",
|
||||
"fields": [
|
||||
"ref",
|
||||
"operator"
|
||||
],
|
||||
"moreFields": [
|
||||
"height",
|
||||
"line_attachment",
|
||||
"line_management",
|
||||
"manufacturer",
|
||||
"material"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"power": "catenary_mast"
|
||||
},
|
||||
"terms": [
|
||||
"catenary pylon",
|
||||
"catenary mast",
|
||||
"overhead line",
|
||||
"overhead wire"
|
||||
],
|
||||
"name": "Catenary Pole"
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
"fields": [
|
||||
"ref",
|
||||
"operator",
|
||||
"generator/method",
|
||||
"generator/method/hydro",
|
||||
"generator/type",
|
||||
"generator/output/electricity"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
"fields": [
|
||||
"ref",
|
||||
"operator",
|
||||
"generator/method",
|
||||
"generator/type",
|
||||
"generator/output/electricity"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -3,10 +3,11 @@
|
|||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"plant/source",
|
||||
"plant/method",
|
||||
"plant/output",
|
||||
"plant/output/electricity",
|
||||
"address",
|
||||
"start_date"
|
||||
],
|
||||
"moreFields": [
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@
|
|||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"plant/output",
|
||||
"plant/output/electricity",
|
||||
"address",
|
||||
"start_date"
|
||||
],
|
||||
"moreFields": [
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@
|
|||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"plant/output",
|
||||
"plant/output/electricity",
|
||||
"address",
|
||||
"start_date"
|
||||
],
|
||||
"moreFields": [
|
||||
|
|
|
|||
|
|
@ -1,7 +1,13 @@
|
|||
{
|
||||
"icon": "maki-dam",
|
||||
"fields": [
|
||||
"{power/plant}"
|
||||
"name",
|
||||
"operator",
|
||||
"plant/source",
|
||||
"plant/method/hydro",
|
||||
"plant/output/electricity",
|
||||
"address",
|
||||
"start_date"
|
||||
],
|
||||
"moreFields": [
|
||||
"{power/plant}"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue